wok view pixman/receipt @ rev 5235

tazpkg-web: add 2.0 version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 08 17:25:45 2010 +0200 (2010-04-08)
parents 7d71efb4fc3b
children 9a3a572d40bb
line source
1 # SliTaz package receipt.
3 PACKAGE="pixman"
4 VERSION="0.15.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Pixman library."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="perl"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.cairographics.org/"
11 WGET_URL="http://cairographics.org/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 --with-html-dir=/usr/share/doc \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }