opt/p5-uri/Pkgfile
2016-02-21 10:21:47 +01:00

31 lines
686 B
Plaintext

# Description: Perl Uniform Resource Identifiers Library.
# URL: http://search.cpan.org/dist/URI/
# 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.71
release=1
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 \
-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
}