wok annotate perl-lchown/receipt @ rev 14282

Add perl-unix-mknod
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 06 15:47:07 2013 +0200 (2013-04-06)
parents df7f484ec8df
children 2d12ebd38be4
rev   line source
pascal@14281 1 # SliTaz package receipt.
pascal@14281 2
pascal@14281 3 PACKAGE="perl-lchown"
pascal@14281 4 VERSION="1.01"
pascal@14281 5 CATEGORY="development"
pascal@14281 6 SHORT_DESC="Lchown module is a Perl extension."
pascal@14281 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14281 8 SOURCE="Lchown"
pascal@14281 9 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@14281 10 WEB_SITE="http://cpan.org/"
pascal@14281 11 WGET_URL="http://search.cpan.org/CPAN/authors/id/N/NC/NCLEATON/$TARBALL"
pascal@14281 12
pascal@14282 13 DEPENDS="perl"
pascal@14282 14 BUILD_DEPENDS="perl"
pascal@14281 15
pascal@14281 16 # Rules to configure and make the package.
pascal@14281 17 compile_rules()
pascal@14281 18 {
pascal@14281 19 cd $src
pascal@14281 20 perl Makefile.PL &&
pascal@14281 21 make &&
pascal@14281 22 make DESTDIR=$DESTDIR install
pascal@14281 23 }
pascal@14281 24
pascal@14281 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14281 26 genpkg_rules()
pascal@14281 27 {
pascal@14281 28 mkdir -p $fs/usr
pascal@14281 29 cp -a $install/usr/lib $fs/usr
pascal@14281 30 }
pascal@14281 31