wok diff perl-digest-md5/receipt @ rev 13294

sslh: fix bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 27 17:15:42 2012 +0200 (2012-08-27)
parents 5eec7cb54869
children 2d12ebd38be4
line diff
     1.1 --- a/perl-digest-md5/receipt	Mon Feb 27 00:36:45 2012 +0100
     1.2 +++ b/perl-digest-md5/receipt	Mon Aug 27 17:15:42 2012 +0200
     1.3 @@ -3,14 +3,15 @@
     1.4  PACKAGE="perl-digest-md5"
     1.5  VERSION="2.51"
     1.6  CATEGORY="development"
     1.7 -SHORT_DESC="Digest::MD5 module is a Perl extension."
     1.8 -MAINTAINER="pascal.bellard@slitaz.org"
     1.9 +SHORT_DESC="Digest::MD5::Perl - Perl implementation of Ron Rivests MD5 Algorithm"
    1.10 +MAINTAINER="slaxemulator@gmail.com"
    1.11 +WEB_SITE="http://search.cpan.org/dist/Digest-MD5"
    1.12 +SOURCE="Digest-MD5"
    1.13 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.14 +WGET_URL="http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/$TARBALL"
    1.15 +
    1.16  DEPENDS="perl"
    1.17  BUILD_DEPENDS="perl"
    1.18 -SOURCE="Digest-MD5"
    1.19 -TARBALL="$SOURCE-$VERSION.tar.gz"
    1.20 -WEB_SITE="http://cpan.org/"
    1.21 -WGET_URL="http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/$TARBALL"
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25 @@ -18,13 +19,12 @@
    1.26  	cd $src
    1.27  	perl Makefile.PL &&
    1.28  	make &&
    1.29 -	make DESTDIR=$PWD/_pkg install
    1.30 +	make DESTDIR=$DESTDIR install
    1.31  }
    1.32  
    1.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.34  genpkg_rules()
    1.35  {
    1.36  	mkdir -p $fs/usr
    1.37 -	cp -a $_pkg/usr/lib $fs/usr
    1.38 +	cp -a $install/usr/lib $fs/usr
    1.39  }
    1.40 -