wok-6.x annotate perl-curses/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 d9b127d0b11a
children 8993f987623e
rev   line source
pascal@1615 1 # SliTaz package receipt.
pascal@1615 2
pascal@1615 3 PACKAGE="perl-curses"
pascal@1615 4 VERSION="1.24"
pascal@1615 5 CATEGORY="development"
pascal@1615 6 SHORT_DESC="Curses module is a Perl extension."
pascal@1615 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
pascal@9215 9 DEPENDS="perl ncursesw"
pascal@1615 10 SOURCE="Curses"
pascal@1615 11 TARBALL="$SOURCE-$VERSION.tgz"
pascal@1615 12 WEB_SITE="http://cpan.org/"
pascal@1615 13 WGET_URL="http://cpan.org/authors/id/G/GI/GIRAFFED/$TARBALL"
pascal@1615 14
pascal@1615 15 # Rules to configure and make the package.
pascal@1615 16 compile_rules()
pascal@1615 17 {
pascal@1615 18 cd $src
pascal@1615 19 perl Makefile.PL &&
pascal@1615 20 make &&
pascal@14702 21 make DESTDIR=$DESTDIR install
pascal@1615 22 }
pascal@1615 23
pascal@1615 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1615 25 genpkg_rules()
pascal@1615 26 {
pascal@1615 27 mkdir -p $fs/usr
pascal@14702 28 cp -a $install/usr/lib $fs/usr
pascal@1615 29 }
pascal@1615 30