wok-6.x annotate perl-berkeleydb/receipt @ rev 18549
Up freetype(2.6.1) (latest) with subpixel rendering available.
Good-looking and clear fonts for TFT screen without the need for freetype-infinality.
Good-looking and clear fonts for TFT screen without the need for freetype-infinality.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Nov 07 14:03:13 2015 +0200 (2015-11-07) |
parents | 58a823cee339 |
children | a0a53bfa3f40 |
rev | line source |
---|---|
pascal@1194 | 1 # SliTaz package receipt. |
pascal@1194 | 2 |
pascal@1194 | 3 PACKAGE="perl-berkeleydb" |
pascal@13019 | 4 VERSION="0.51" |
pascal@1194 | 5 CATEGORY="development" |
pascal@1194 | 6 SHORT_DESC="BerkeleyDB module is a Perl extension interface to db." |
pascal@1194 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14702 | 8 LICENSE="GPL" |
pascal@1194 | 9 DEPENDS="perl db" |
pascal@1194 | 10 BUILD_DEPENDS="perl db db-dev" |
pascal@1194 | 11 SOURCE="BerkeleyDB" |
pascal@1194 | 12 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@1194 | 13 WEB_SITE="http://cpan.org/" |
pascal@1194 | 14 WGET_URL="http://cpan.org/authors/id/P/PM/PMQS/$TARBALL" |
pascal@1194 | 15 |
pascal@1194 | 16 # Rules to configure and make the package. |
pascal@1194 | 17 compile_rules() |
pascal@1194 | 18 { |
pascal@1194 | 19 cd $src |
pascal@1194 | 20 perl Makefile.PL |
pascal@1194 | 21 make |
pascal@14702 | 22 make DESTDIR=$DESTDIR install |
pascal@1194 | 23 } |
pascal@1194 | 24 |
pascal@1194 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1194 | 26 genpkg_rules() |
pascal@1194 | 27 { |
pascal@1194 | 28 mkdir -p $fs/usr |
pascal@14702 | 29 cp -a $install/usr/lib $fs/usr |
pascal@1194 | 30 } |
pascal@1194 | 31 |