wok rev 23800
created recipes for xcb-util-renderutil and xcb-util-renderutil-dev
author | Hans-G?nter Theisgen |
---|---|
date | Sun May 24 07:13:26 2020 +0100 (2020-05-24) |
parents | 162ff9218137 |
children | 5833ecdc956f |
files | xcb-util-renderutil-dev/receipt xcb-util-renderutil/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xcb-util-renderutil-dev/receipt Sun May 24 07:13:26 2020 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xcb-util-renderutil-dev" 1.7 +VERSION="0.3.9" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Development files for xcb-util-renderutil." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="MIT" 1.12 +WEB_SITE="https://xcb.freedesktop.org" 1.13 + 1.14 +DEPENDS="pkg-config xcb-util-renderutil" 1.15 +WANTED="xcb-util-renderutil" 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-renderutil/receipt Sun May 24 07:13:26 2020 +0100 2.3 @@ -0,0 +1,36 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xcb-util-renderutil" 2.7 +VERSION="0.3.9" 2.8 +CATEGORY="x-window" 2.9 +TAGS="Xorg" 2.10 +SHORT_DESC="Convenience functions for the Render extension." 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-renderutil.html" 2.15 + 2.16 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.17 +WGET_URL="$XORG_MIRROR/xcb/$TARBALL" 2.18 +TARBALL_SHA1="cb533b1d039f833f070e7d6398c221a31d30d5e2" 2.19 + 2.20 +BUILD_DEPENDS="libxcb-dev" 2.21 + 2.22 +DEPENDS="libxcb" 2.23 + 2.24 +# Rules to configure and make the package. 2.25 +compile_rules() 2.26 +{ 2.27 + ./configure \ 2.28 + --disable-static \ 2.29 + $CONFIGURE_ARGS && 2.30 + make && 2.31 + make install 2.32 +} 2.33 + 2.34 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.35 +genpkg_rules() 2.36 +{ 2.37 + mkdir -p $fs/usr/lib 2.38 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.39 +}