contrib/p5-digest-sha1/Pkgfile

30 lines
683 B
Plaintext
Raw Normal View History

2008-03-04 20:55:19 +01:00
# Description: Perl Digest::SHA1
# URL: http://search.cpan.org/~gaas/Digest-SHA1/
2009-05-25 14:34:49 +02:00
# Maintainer: Jose V Beneyto, sepen at crux dot nu
2008-03-04 20:55:19 +01:00
# Packager: Han Boetes, han at mijncomputer dot nl
# Depends on: perl
name=p5-digest-sha1
2010-08-18 10:12:48 +02:00
version=2.13
release=2
source=(http://www.cpan.org/modules/by-module/Digest/Digest-SHA1-$version.tar.gz)
2008-03-04 20:55:19 +01:00
build() {
cd Digest-SHA1-$version
2008-03-04 20:55:19 +01:00
perl Makefile.PL
make OPTIMIZE="$CFLAGS"
2008-03-04 20:55:19 +01:00
make install DESTDIR=$PKG
2008-03-04 20:55:19 +01:00
# Remove perlcrap
find $PKG -type f \( \
-name '.packlist' -or \
-name '*.bs' -or \
-name 'autosplit.ix' -or \
-name 'perllocal.pod' \) -delete
2008-03-04 20:55:19 +01:00
# Remove empty directories
find $PKG -depth -empty -exec rm -rf {} \;
}