wok annotate apr-util/receipt @ rev 1458

apr-util icon-naming-utils irssi mcabber pygobject: update BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 03 17:20:31 2008 +0000 (2008-10-03)
parents 03a799424aaa
children d86a706d7fcd
rev   line source
erjo@1217 1 # SliTaz package receipt.
erjo@1217 2
erjo@1217 3 PACKAGE="apr-util"
erjo@1217 4 VERSION="1.3.2"
pascal@1423 5 CATEGORY="development"
erjo@1217 6 SHORT_DESC="Apache Portable Runtime Library Utilities"
erjo@1217 7 MAINTAINER="lehswe@gmail.com"
erjo@1217 8 DEPENDS="apr"
pascal@1458 9 BUILD_DEPENDS="apr"
erjo@1217 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@1217 11 WEB_SITE="http://apr.apache.org"
erjo@1217 12 WGET_URL="http://apache.jumper.nu/apr/$TARBALL"
erjo@1217 13
erjo@1217 14 # Rules to configure and make the package.
erjo@1217 15 compile_rules()
erjo@1217 16 {
erjo@1217 17 cd $src
erjo@1217 18 ./configure --with-apr=/usr/bin --prefix=/usr --infodir=/usr/share/info \
pascal@1458 19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1458 20 make &&
erjo@1217 21 make DESTDIR=$PWD/_pkg install
erjo@1217 22 }
erjo@1217 23
erjo@1217 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1217 25 genpkg_rules()
erjo@1217 26 {
erjo@1217 27 mkdir -p $fs/usr/lib/apr-util-1
erjo@1217 28
erjo@1217 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@1217 30 cp -a $_pkg/usr/lib/apr-util-1/*.so* $fs/usr/lib/apr-util-1
erjo@1217 31 }