wok-6.x annotate db/receipt @ rev 1325
Add chillispot
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Aug 29 10:16:41 2008 +0000 (2008-08-29) |
parents | c13c815a576c |
children | 03a799424aaa |
rev | line source |
---|---|
pascal@1155 | 1 # SliTaz package receipt. |
pascal@1155 | 2 |
pascal@1155 | 3 PACKAGE="db" |
pascal@1155 | 4 VERSION="4.5.20" |
pascal@1155 | 5 CATEGORY="system" |
pascal@1155 | 6 SHORT_DESC="Berkeley database system." |
pascal@1155 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1155 | 8 TARBALL="$PACKAGE-$VERSION.NC.tar.gz" |
pascal@1155 | 9 WEB_SITE="http://www.oracle.com/technology/software/products/berkeley-db/db/" |
pascal@1155 | 10 WGET_URL="http://download.oracle.com/berkeley-db/$TARBALL" |
pascal@1155 | 11 BUILD_DEPENDS="patch" |
pascal@1155 | 12 DEPENDS="libdb" |
pascal@1155 | 13 |
pascal@1155 | 14 # Rules to configure and make the package. |
pascal@1155 | 15 compile_rules() |
pascal@1155 | 16 { |
pascal@1155 | 17 |
pascal@1155 | 18 ln -s $PACKAGE-$VERSION.NC $src |
pascal@1155 | 19 cd $src |
pascal@1155 | 20 wget http://www.oracle.com/technology/products/berkeley-db/db/update/4.5.20/patch.4.5.20.1 |
pascal@1155 | 21 patch -p0 < patch.4.5.20.1 |
pascal@1155 | 22 cd build_unix |
pascal@1155 | 23 ../dist/configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1155 | 24 --mandir=/usr/share/man $CONFIGURE_ARGS |
pascal@1155 | 25 make |
pascal@1155 | 26 make DESTDIR=$PWD/../_pkg install |
pascal@1155 | 27 } |
pascal@1155 | 28 |
pascal@1155 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1155 | 30 genpkg_rules() |
pascal@1155 | 31 { |
pascal@1155 | 32 mkdir -p $fs/usr |
pascal@1155 | 33 cp -a $_pkg/usr/bin $fs/usr |
pascal@1155 | 34 # Package all db pkgs |
pascal@1155 | 35 for i in $(cd $WOK; ls -d db-* libdb) |
pascal@1155 | 36 do |
pascal@1155 | 37 tazwok genpkg $i |
pascal@1155 | 38 done |
pascal@1155 | 39 } |
erjo@1191 | 40 |
erjo@1191 | 41 clean_wok() |
erjo@1191 | 42 { |
erjo@1191 | 43 rm -rf PACKAGE-$VERSION.NC |
erjo@1191 | 44 } |