wok view xorg-libXrender/receipt @ rev 2957

Up: cvs (1.11.23)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri May 08 22:12:38 2009 +0200 (2009-05-08)
parents c678d87787b2
children c10d2c89632b
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXrender"
4 VERSION="0.9.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXrender"
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 --prefix=/usr --sysconfdir=/etc \
18 --mandir=/usr/share/man --localstatedir=/var \
19 $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 strip -s $fs/usr/lib/*
30 }