wok view xcb-util-renderutil/receipt @ 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
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="xcb-util-renderutil"
4 VERSION="0.3.9"
5 CATEGORY="x-window"
6 TAGS="Xorg"
7 SHORT_DESC="Convenience functions for the Render extension."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://xcb.freedesktop.org/"
11 LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/xcb-util-renderutil.html"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WGET_URL="$XORG_MIRROR/xcb/$TARBALL"
15 TARBALL_SHA1="cb533b1d039f833f070e7d6398c221a31d30d5e2"
17 BUILD_DEPENDS="libxcb-dev"
19 DEPENDS="libxcb"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 --disable-static \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }