opt/p5-uri/Pkgfile
2011-08-16 10:07:12 +02:00

30 lines
697 B
Plaintext

# Description: Perl Uniform Resource Identifiers Library.
# URL: http://www.cpan.org/modules/by-module/URI/GAAS/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Han Boetes han at mijncomputer dot nl
# Depends on: perl
name=p5-uri
version=1.59
release=1
source=(http://www.cpan.org/modules/by-module/URI/GAAS/URI-$version.tar.gz)
build() {
cd URI-$version
perl Makefile.PL
make
make install DESTDIR=$PKG
# Remove perlcrap
find $PKG \
-name .packlist -or \
-name '*.bs' -or \
-name autosplit.ix -or \
-name perllocal.pod | xargs rm
# Remove empty directories
find $PKG -depth -empty -exec rm -rf {} \;
chown -R root:root $PKG
}