wok annotate perl-mime-base64/receipt @ rev 18281
mate-control-center: update deps and force glib compile schemas
author | Yuri Pourre <yuripourre@gmail.com> |
---|---|
date | Mon Aug 10 09:59:01 2015 -0300 (2015-08-10) |
parents | d38ad8b2c6a5 |
children | 20661c276bcf |
rev | line source |
---|---|
pascal@1671 | 1 # SliTaz package receipt. |
pascal@1671 | 2 |
pascal@1671 | 3 PACKAGE="perl-mime-base64" |
pascal@1671 | 4 VERSION="3.07" |
pascal@1671 | 5 CATEGORY="development" |
pascal@1671 | 6 SHORT_DESC="MIME::Base64 module is a Perl extension." |
pascal@1671 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14702 | 8 LICENSE="GPL" |
pascal@1671 | 9 DEPENDS="perl" |
pascal@1671 | 10 BUILD_DEPENDS="perl" |
pascal@1671 | 11 SOURCE="MIME-Base64" |
pascal@1671 | 12 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@1743 | 13 WEB_SITE="http://cpan.org/" |
pascal@1671 | 14 WGET_URL="http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/$TARBALL" |
pascal@1671 | 15 |
pascal@1671 | 16 # Rules to configure and make the package. |
pascal@1671 | 17 compile_rules() |
pascal@1671 | 18 { |
pascal@1671 | 19 cd $src |
pascal@1671 | 20 perl Makefile.PL && |
pascal@1671 | 21 make && |
pascal@14702 | 22 make DESTDIR=$DESTDIR install |
pascal@1671 | 23 } |
pascal@1671 | 24 |
pascal@1671 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1671 | 26 genpkg_rules() |
pascal@1671 | 27 { |
pascal@1671 | 28 mkdir -p $fs/usr |
pascal@14702 | 29 cp -a $install/usr/lib $fs/usr |
pascal@1671 | 30 } |
pascal@1671 | 31 |