# HG changeset patch # User Hans-G?nter Theisgen # Date 1590301305 -3600 # Node ID 5833ecdc956f37782f0263eafefa1d8be3b18322 # Parent e75bceccda659bd41656216063483838e3e146a1 created recipes for xcb-util-cursor and xcb-util-cursor-dev diff -r e75bceccda65 -r 5833ecdc956f xcb-util-cursor-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xcb-util-cursor-dev/receipt Sun May 24 07:21:45 2020 +0100 @@ -0,0 +1,22 @@ +# SliTaz package receipt. + +PACKAGE="xcb-util-cursor-dev" +VERSION="0.1.3" +CATEGORY="development" +SHORT_DESC="Development files for xcb-util-cursor." +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://xcb.freedesktop.org" + +BUILD_DEPENDS="pkg-config" +WANTED="xcb-util-cursor" + +# 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 e75bceccda65 -r 5833ecdc956f xcb-util-cursor/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xcb-util-cursor/receipt Sun May 24 07:21:45 2020 +0100 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="xcb-util-cursor" +VERSION="0.1.3" +CATEGORY="x-window" +TAGS="Xorg" +SHORT_DESC="XCB cursor library." +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://xcb.freedesktop.org/" +LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/xcb-util-cursor.html" + +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="$XORG_MIRROR/xcb/$TARBALL" +TARBALL_SHA1="26562eb6d4151307f7b6a53453d360ecfc0563ac" + +DEPENDS="libxcb xcb-util-image xcb-util-renderutil" +BUILD_DEPENDS="libxcb-dev xcb-util-dev xcb-util-image-dev xcb-util-renderutil-dev" + +# 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 +}