wok annotate perl-crypt-smbhash/receipt @ rev 20015

Up reaver (1.6.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Aug 11 12:10:52 2017 +0200 (2017-08-11)
parents 4cfeefae7cbc
children ca4a422cce07
rev   line source
pascal@1404 1 # SliTaz package receipt.
pascal@1404 2
pascal@1404 3 PACKAGE="perl-crypt-smbhash"
pascal@1404 4 VERSION="0.12"
pascal@1404 5 CATEGORY="development"
pascal@1404 6 SHORT_DESC="Crypt::SmbHash module is a Perl extension."
pascal@1404 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
pascal@1404 9 DEPENDS="perl"
pascal@1404 10 BUILD_DEPENDS="perl"
pascal@1404 11 SOURCE="Crypt-SmbHash"
pascal@1404 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1404 13 WEB_SITE="http://cpan.org/"
pascal@1404 14 WGET_URL="http://cpan.org/authors/id/B/BJ/BJKUIT/$TARBALL"
pascal@1404 15
pascal@1404 16 # Rules to configure and make the package.
pascal@1404 17 compile_rules()
pascal@1404 18 {
pascal@1404 19 cd $src
pascal@1404 20 perl Makefile.PL
pascal@1404 21 make
pascal@14702 22 make DESTDIR=$DESTDIR install
pascal@1404 23 }
pascal@1404 24
pascal@1404 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1404 26 genpkg_rules()
pascal@1404 27 {
pascal@1404 28 mkdir -p $fs/usr
pascal@14702 29 cp -a $install/usr/lib $fs/usr
pascal@1404 30 }
pascal@1404 31