wok view xorg-libXau/receipt @ rev 5494

Up: testdisk (6.11.3)
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 08 00:40:05 2010 +0000 (2010-05-08)
parents bcf4317a51e4
children 71ec9372bc4c
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXau"
4 VERSION="1.0.5"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg authorization routines."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXau"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.x.org/"
11 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr --sysconfdir=/etc \
19 --mandir=/usr/share/man --localstatedir=/var \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }