wok-next annotate perl-unicode-map8/receipt @ rev 6352
Up: bind, bind-client, bind-dev, libind to 9.7.1-P2.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Sep 20 22:21:14 2010 +0000 (2010-09-20) |
parents | |
children | 2d12ebd38be4 |
rev | line source |
---|---|
pascal@1917 | 1 # SliTaz package receipt. |
pascal@1917 | 2 |
pascal@1917 | 3 PACKAGE="perl-unicode-map8" |
pascal@1917 | 4 VERSION="0.12" |
pascal@1917 | 5 CATEGORY="development" |
pascal@1917 | 6 SHORT_DESC="Unicode::Map8 module is a Perl extension." |
pascal@1917 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1917 | 8 DEPENDS="perl" |
pascal@1917 | 9 BUILD_DEPENDS="perl" |
pascal@1917 | 10 SOURCE="Unicode-Map8" |
pascal@1917 | 11 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@1917 | 12 WEB_SITE="http://cpan.org/" |
pascal@1917 | 13 WGET_URL="http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/$TARBALL" |
pascal@1917 | 14 |
pascal@1917 | 15 # Rules to configure and make the package. |
pascal@1917 | 16 compile_rules() |
pascal@1917 | 17 { |
pascal@1917 | 18 cd $src |
pascal@1917 | 19 perl Makefile.PL && |
pascal@1917 | 20 make && |
pascal@1917 | 21 make DESTDIR=$PWD/_pkg install |
pascal@1917 | 22 } |
pascal@1917 | 23 |
pascal@1917 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1917 | 25 genpkg_rules() |
pascal@1917 | 26 { |
pascal@1917 | 27 mkdir -p $fs/usr |
pascal@1917 | 28 cp -a $_pkg/usr/lib $fs/usr |
pascal@1917 | 29 } |
pascal@1917 | 30 |