wok annotate perl-maketext-gettext/receipt @ rev 14702

perl, rrdtool: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 07 18:46:07 2013 +0200 (2013-06-07)
parents d0bd20684da8
children 2b9f96603415
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"
pascal@14702 8 LICENSE="GPL"
erjo@2647 9 DEPENDS="perl"
erjo@2647 10 BUILD_DEPENDS="perl"
erjo@2647 11 SOURCE="Locale-Maketext-Gettext"
erjo@2647 12 TARBALL="$SOURCE-$VERSION.tar.gz"
erjo@2647 13 WEB_SITE="http://cpan.org/"
erjo@2647 14 WGET_URL="http://search.cpan.org/CPAN/authors/id/I/IM/IMACAT/$TARBALL"
erjo@2647 15
erjo@2647 16 # Rules to configure and make the package.
erjo@2647 17 compile_rules()
erjo@2647 18 {
erjo@2647 19 cd $src
erjo@2647 20 perl Makefile.PL
erjo@2647 21 make
pascal@14702 22 make DESTDIR=$DESTDIR install
erjo@2647 23 }
erjo@2647 24
erjo@2647 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2647 26 genpkg_rules()
erjo@2647 27 {
erjo@2647 28 mkdir -p $fs/usr
pascal@14702 29 cp -a $install/usr/lib $fs/usr
erjo@2647 30 }
erjo@2647 31