wok annotate perl-file-tail/receipt @ rev 17261

Move separate MIME definitions to the shared-mime-info package.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Oct 22 03:42:23 2014 +0300 (2014-10-22)
parents fc85af09bdd2
children 979b97234beb
rev   line source
pascal@7116 1 # SliTaz package receipt.
pascal@7116 2
pascal@7116 3 PACKAGE="perl-file-tail"
pascal@7116 4 VERSION="0.99.3"
pascal@7116 5 CATEGORY="development"
pascal@7116 6 SHORT_DESC="File::Tail module is a Perl extension."
pascal@7116 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
pascal@7116 9 DEPENDS="perl"
pascal@7116 10 BUILD_DEPENDS="perl"
pascal@7116 11 SOURCE="File-Tail"
pascal@7116 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@7116 13 WEB_SITE="http://cpan.org/"
pascal@7116 14 WGET_URL="http://search.cpan.org/CPAN/authors/id/M/MG/MGRABNAR/$TARBALL"
pascal@7116 15
pascal@7116 16 # Rules to configure and make the package.
pascal@7116 17 compile_rules()
pascal@7116 18 {
pascal@7116 19 cd $src
pascal@7116 20 perl Makefile.PL &&
pascal@7116 21 make &&
pascal@14702 22 make DESTDIR=$DESTDIR install
pascal@7116 23 }
pascal@7116 24
pascal@7116 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7116 26 genpkg_rules()
pascal@7116 27 {
pascal@7116 28 mkdir -p $fs/usr
pascal@14702 29 cp -a $install/usr/lib $fs/usr
pascal@7116 30 }
pascal@7116 31