wok-6.x view xorg-libXau/receipt @ rev 15936
UP: soprano (2.8.0) and fix build depends
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Feb 22 11:27:57 2014 +0100 (2014-02-22) |
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 }