wok-6.x diff apr/receipt @ rev 1256
powertop: typo fix in receipt
author | Dominique Corbex <domcox@users.sourceforge.net> |
---|---|
date | Wed Aug 13 17:45:27 2008 +0200 (2008-08-13) |
parents | |
children | 03a799424aaa |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/apr/receipt Wed Aug 13 17:45:27 2008 +0200 1.3 @@ -0,0 +1,32 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="apr" 1.7 +VERSION="1.3.2" 1.8 +CATEGORY="library" 1.9 +SHORT_DESC="Apache Portable Runtime Library" 1.10 +MAINTAINER="lehswe@gmail.com" 1.11 +DEPENDS="" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://apr.apache.org" 1.14 +WGET_URL="http://apache.jumper.nu/apr/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.21 + --with-installbuilddir=/usr/share/apr-1/build \ 1.22 + --enable-nonportable-atomics \ 1.23 + --mandir=/usr/share/man $CONFIGURE_ARGS 1.24 + make 1.25 + make DESTDIR=$PWD/_pkg install 1.26 +} 1.27 + 1.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 +genpkg_rules() 1.30 +{ 1.31 + mkdir -p $fs/usr/lib 1.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.33 + cp -a $_pkg/usr/lib/*.exp $fs/usr/lib 1.34 +} 1.35 +