wok-stable annotate pkg-config/receipt @ rev 490

Up: slitaz-base-files (1.4) + slitaz-doc (1.2) to change slitaz release string
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 22 16:58:02 2008 +0100 (2008-03-22)
parents 5f85fb04f6b8
children 3bc22fb0d985
rev   line source
pankso@28 1 # SliTaz package receipt.
pankso@28 2
pankso@28 3 PACKAGE="pkg-config"
pankso@28 4 VERSION="0.21"
pankso@200 5 CATEGORY="development"
pankso@28 6 SHORT_DESC="Free desktop packages manager."
pankso@28 7 MAINTAINER="pankso@slitaz.org"
pankso@28 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@28 9 WEB_SITE="http://pkgconfig.freedesktop.org/wiki/"
pankso@28 10 WGET_URL="http://pkgconfig.freedesktop.org/releases/$TARBALL"
pankso@28 11
pankso@28 12 # Rules to configure and make the package.
pankso@28 13 compile_rules()
pankso@28 14 {
pankso@28 15 cd $src
pankso@28 16 ./configure --prefix=/usr --infodir=/usr/share/info \
pankso@28 17 --mandir=/usr/share/man $CONFIGURE_ARGS
pankso@28 18 make
pankso@28 19 make DESTDIR=$PWD/_pkg install
pankso@28 20 }
pankso@28 21
pankso@28 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@28 23 genpkg_rules()
pankso@28 24 {
pankso@28 25 mkdir -p $fs/usr/share
pankso@28 26 cp -a $_pkg/usr/bin $fs/usr
pankso@28 27 cp -a $_pkg/usr/share/aclocal $fs/usr/share
pankso@28 28 strip -s $fs/usr/bin/*
pankso@28 29 }