wok view xorg-libXau/receipt @ rev 14639

Fixed all xorg receipts to use SOURCE variable again. Please use SOURCE variable Aleksej.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jun 02 09:36:07 2013 +0000 (2013-06-02)
parents 919b102812ab
children e2d4f5ed39a7
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXau"
4 VERSION="1.0.8"
5 CATEGORY="x-window"
6 SHORT_DESC="X authorization file management libary"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="http://www.x.org/"
10 SOURCE="libXau"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
14 DEPENDS="glibc-base"
15 BUILD_DEPENDS="xorg-xproto"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p \
33 $fs/usr/share/licenses \
34 $fs/usr/lib
35 cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }