wok annotate xorg-libXau/receipt @ rev 15666

Add ddumbfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 13 16:18:29 2013 +0000 (2013-12-13)
parents 919b102812ab
children e2d4f5ed39a7
rev   line source
pankso@20 1 # SliTaz package receipt.
pankso@20 2
pankso@20 3 PACKAGE="xorg-libXau"
al@14636 4 VERSION="1.0.8"
pankso@20 5 CATEGORY="x-window"
al@14604 6 SHORT_DESC="X authorization file management libary"
pankso@20 7 MAINTAINER="pankso@slitaz.org"
al@14604 8 LICENSE="other"
pankso@20 9 WEB_SITE="http://www.x.org/"
slaxemulator@14639 10 SOURCE="libXau"
slaxemulator@14639 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@20 12 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
pankso@20 13
al@14604 14 DEPENDS="glibc-base"
al@14604 15 BUILD_DEPENDS="xorg-xproto"
al@14604 16
pankso@20 17 # Rules to configure and make the package.
pankso@20 18 compile_rules()
pankso@20 19 {
pankso@12511 20 ./configure \
pankso@12511 21 --sysconfdir=/etc \
pankso@12511 22 --localstatedir=/var \
al@14604 23 --disable-static \
pankso@12511 24 $CONFIGURE_ARGS &&
al@14604 25 make &&
al@14604 26 make install
pankso@20 27 }
pankso@20 28
pankso@20 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@20 30 genpkg_rules()
pankso@20 31 {
al@14604 32 mkdir -p \
al@14604 33 $fs/usr/share/licenses \
al@14604 34 $fs/usr/lib
al@14604 35 cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
pankso@12511 36 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@20 37 }