wok-next annotate xcb-util/receipt @ rev 15804
8086tiny: typos (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jan 22 18:22:51 2014 +0100 (2014-01-22) |
parents | 7adad1411c29 |
children | 4ba762f15bab |
rev | line source |
---|---|
mallory@2686 | 1 # SliTaz package receipt. |
mallory@2686 | 2 |
mallory@2686 | 3 PACKAGE="xcb-util" |
pascal@12940 | 4 VERSION="0.3.8" |
mallory@2686 | 5 CATEGORY="x-window" |
mallory@2686 | 6 SHORT_DESC="XCB Utilites" |
mallory@2686 | 7 MAINTAINER="mallory@sweetpeople.org" |
pascal@15601 | 8 LICENSE="MIT" |
mallory@2686 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
mallory@2686 | 10 WEB_SITE="http://xcb.freedesktop.org" |
mallory@2686 | 11 WGET_URL="$WEB_SITE/dist/$TARBALL" |
mallory@2686 | 12 |
pascal@15601 | 13 DEPENDS="libxcb xorg-libXdmcp" |
pascal@15601 | 14 BUILD_DEPENDS="libxcb-dev libxcb gperf" |
pascal@15601 | 15 |
mallory@2686 | 16 # Rules to configure and make the package. |
mallory@2686 | 17 compile_rules() |
mallory@2686 | 18 { |
mallory@2686 | 19 cd $src |
mallory@2686 | 20 ./configure \ |
mallory@2686 | 21 --prefix=/usr \ |
mallory@2686 | 22 --infodir=/usr/share/info \ |
mallory@2686 | 23 --mandir=/usr/share/man \ |
mallory@2686 | 24 $CONFIGURE_ARGS && |
slaxemulator@11910 | 25 make && make DESTDIR=$DESTDIR install |
mallory@2686 | 26 } |
mallory@2686 | 27 |
mallory@2686 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@2686 | 29 genpkg_rules() |
mallory@2686 | 30 { |
samuel_trassare@11874 | 31 mkdir -p $fs/usr/lib |
pascal@15601 | 32 cp -a $install/usr/lib/*.so* $fs/usr/lib |
mallory@2686 | 33 } |
mallory@2686 | 34 |