wok-next annotate perl-maketext-gettext/receipt @ rev 8658
Automated merge with https://bitbucket.org/gokhlayeh/wok
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Wed Feb 16 05:33:41 2011 +0100 (2011-02-16) |
parents | |
children | 2d12ebd38be4 |
rev | line source |
---|---|
erjo@2647 | 1 # SliTaz package receipt. |
erjo@2647 | 2 |
erjo@2647 | 3 PACKAGE="perl-maketext-gettext" |
erjo@2647 | 4 VERSION="1.26" |
erjo@2647 | 5 CATEGORY="development" |
erjo@2647 | 6 SHORT_DESC="Perl gettext and Maketext frameworks" |
erjo@2647 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@2647 | 8 DEPENDS="perl" |
erjo@2647 | 9 BUILD_DEPENDS="perl" |
erjo@2647 | 10 SOURCE="Locale-Maketext-Gettext" |
erjo@2647 | 11 TARBALL="$SOURCE-$VERSION.tar.gz" |
erjo@2647 | 12 WEB_SITE="http://cpan.org/" |
erjo@2647 | 13 WGET_URL="http://search.cpan.org/CPAN/authors/id/I/IM/IMACAT/$TARBALL" |
erjo@2647 | 14 |
erjo@2647 | 15 # Rules to configure and make the package. |
erjo@2647 | 16 compile_rules() |
erjo@2647 | 17 { |
erjo@2647 | 18 cd $src |
erjo@2647 | 19 perl Makefile.PL |
erjo@2647 | 20 make |
erjo@2647 | 21 make DESTDIR=$PWD/_pkg install |
erjo@2647 | 22 } |
erjo@2647 | 23 |
erjo@2647 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@2647 | 25 genpkg_rules() |
erjo@2647 | 26 { |
erjo@2647 | 27 mkdir -p $fs/usr |
erjo@2647 | 28 cp -a $_pkg/usr/lib $fs/usr |
erjo@2647 | 29 } |
erjo@2647 | 30 |