wok view xorg-libSM/receipt @ rev 8647

Fixed xz post_remove.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Feb 15 19:35:52 2011 +0000 (2011-02-15)
parents 07ae722ec64e
children 7468c655e59c
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libSM"
4 VERSION="1.1.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libSM"
9 DEPENDS="util-linux-ng-uuid xorg-libICE"
10 BUILD_DEPENDS="e2fsprogs-dev util-linux-ng-uuid-dev xorg-libICE-dev"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --localstatedir=/var \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }