wok annotate pixman/receipt @ rev 10950

get-virtualbox: only /opt/VirtualBox is supported now...
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 02 14:26:45 2011 +0200 (2011-09-02)
parents e8bc386710e9
children 7e91486a25fd
rev   line source
pankso@831 1 # SliTaz package receipt.
pankso@831 2
pankso@831 3 PACKAGE="pixman"
slaxemulator@10107 4 VERSION="0.22.0"
pankso@831 5 CATEGORY="x-window"
pankso@831 6 SHORT_DESC="Pixman library."
pankso@831 7 MAINTAINER="pankso@slitaz.org"
slaxemulator@6291 8 BUILD_DEPENDS="perl"
slaxemulator@7312 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@831 10 WEB_SITE="http://www.cairographics.org/"
slaxemulator@7312 11 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
pankso@831 12
pankso@831 13 # Rules to configure and make the package.
pankso@831 14 compile_rules()
pankso@831 15 {
pankso@831 16 cd $src
pankso@831 17 ./configure \
slaxemulator@6291 18 --enable-gtk=no \
slaxemulator@10107 19 $CONFIGURE_ARGS &&
slaxemulator@10107 20 make && make install
pankso@831 21 }
pankso@831 22
pankso@831 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@831 24 genpkg_rules()
pankso@831 25 {
pankso@831 26 mkdir -p $fs/usr/lib
pankso@831 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@831 28 }