opt/p5-uri/Pkgfile

27 lines
575 B
Plaintext

# Description: Perl Uniform Resource Identifiers Library.
# URL: http://search.cpan.org/dist/URI/
# Maintainer: Danny Rawlins, crux at romster dot me
name=p5-uri
version=1.72
release=2
source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/URI-$version.tar.gz)
build() {
cd URI-$version
perl Makefile.PL
make
make install DESTDIR=$PKG
# Remove perlcrap
find $PKG -type f \( \
-name '.packlist' -or \
-name '*.bs' -or \
-name 'autosplit.ix' -or \
-name 'perllocal.pod' \) -delete
# Remove empty directories
find $PKG -depth -empty -exec rm -rf {} \;
}