wok rev 23801

created recipes for xcb-util-cursor and xcb-util-cursor-dev
author Hans-G?nter Theisgen
date Sun May 24 07:21:45 2020 +0100 (2020-05-24)
parents e75bceccda65
children a8bde9afd23f
files xcb-util-cursor-dev/receipt xcb-util-cursor/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xcb-util-cursor-dev/receipt	Sun May 24 07:21:45 2020 +0100
     1.3 @@ -0,0 +1,22 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="xcb-util-cursor-dev"
     1.7 +VERSION="0.1.3"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Development files for xcb-util-cursor."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="MIT"
    1.12 +WEB_SITE="https://xcb.freedesktop.org"
    1.13 +
    1.14 +BUILD_DEPENDS="pkg-config"
    1.15 +WANTED="xcb-util-cursor"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p $fs/usr/lib
    1.21 +
    1.22 +	cp -a $install/usr/include		$fs/usr
    1.23 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.24 +	cp -a $install/usr/lib/*.la		$fs/usr/lib
    1.25 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/xcb-util-cursor/receipt	Sun May 24 07:21:45 2020 +0100
     2.3 @@ -0,0 +1,35 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="xcb-util-cursor"
     2.7 +VERSION="0.1.3"
     2.8 +CATEGORY="x-window"
     2.9 +TAGS="Xorg"
    2.10 +SHORT_DESC="XCB cursor library."
    2.11 +MAINTAINER="maintainer@slitaz.org"
    2.12 +LICENSE="MIT"
    2.13 +WEB_SITE="https://xcb.freedesktop.org/"
    2.14 +LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/xcb-util-cursor.html"
    2.15 +
    2.16 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.17 +WGET_URL="$XORG_MIRROR/xcb/$TARBALL"
    2.18 +TARBALL_SHA1="26562eb6d4151307f7b6a53453d360ecfc0563ac"
    2.19 +
    2.20 +DEPENDS="libxcb xcb-util-image xcb-util-renderutil"
    2.21 +BUILD_DEPENDS="libxcb-dev xcb-util-dev xcb-util-image-dev xcb-util-renderutil-dev"
    2.22 +
    2.23 +# Rules to configure and make the package.
    2.24 +compile_rules()
    2.25 +{
    2.26 +	./configure			\
    2.27 +		--disable-static	\
    2.28 +		$CONFIGURE_ARGS &&
    2.29 +	make &&
    2.30 +	make install
    2.31 +}
    2.32 +
    2.33 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.34 +genpkg_rules()
    2.35 +{
    2.36 +	mkdir -p $fs/usr/lib
    2.37 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.38 +}