wok view xorg-libSM/receipt @ rev 3236

Fix: rrdtool, enable perl site configuration
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri May 29 23:36:34 2009 +0200 (2009-05-29)
parents 075898aaed14
children 0588160a6878
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libSM"
4 VERSION="1.1.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libSM"
9 DEPENDS="libuuid"
10 BUILD_DEPENDS="e2fsprogs-dev"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
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 }