# HG changeset patch # User Hans-G?nter Theisgen # Date 1590300806 -3600 # Node ID e75bceccda659bd41656216063483838e3e146a1 # Parent 162ff92181375588c04c22e69de21b46c1ff0e80 created recipes for xcb-util-renderutil and xcb-util-renderutil-dev diff -r 162ff9218137 -r e75bceccda65 xcb-util-renderutil-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xcb-util-renderutil-dev/receipt Sun May 24 07:13:26 2020 +0100 @@ -0,0 +1,22 @@ +# SliTaz package receipt. + +PACKAGE="xcb-util-renderutil-dev" +VERSION="0.3.9" +CATEGORY="development" +SHORT_DESC="Development files for xcb-util-renderutil." +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://xcb.freedesktop.org" + +DEPENDS="pkg-config xcb-util-renderutil" +WANTED="xcb-util-renderutil" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/lib/*.la $fs/usr/lib +} diff -r 162ff9218137 -r e75bceccda65 xcb-util-renderutil/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xcb-util-renderutil/receipt Sun May 24 07:13:26 2020 +0100 @@ -0,0 +1,36 @@ +# SliTaz package receipt. + +PACKAGE="xcb-util-renderutil" +VERSION="0.3.9" +CATEGORY="x-window" +TAGS="Xorg" +SHORT_DESC="Convenience functions for the Render extension." +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://xcb.freedesktop.org/" +LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/xcb-util-renderutil.html" + +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/xcb/$TARBALL" +TARBALL_SHA1="cb533b1d039f833f070e7d6398c221a31d30d5e2" + +BUILD_DEPENDS="libxcb-dev" + +DEPENDS="libxcb" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --disable-static \ + $CONFIGURE_ARGS && + make && + make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib +}