opt/p5-uri/Pkgfile

27 lines
575 B
Plaintext
Raw Normal View History

2008-09-16 15:55:48 +02:00
# Description: Perl Uniform Resource Identifiers Library.
2015-05-06 13:50:40 +02:00
# URL: http://search.cpan.org/dist/URI/
2017-11-25 07:38:52 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2008-09-16 15:55:48 +02:00
name=p5-uri
2017-11-25 07:38:52 +01:00
version=1.72
release=2
2014-08-19 13:39:11 +02:00
source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/URI-$version.tar.gz)
2008-09-16 15:55:48 +02:00
build() {
2017-11-25 07:38:52 +01:00
cd URI-$version
2008-09-16 15:55:48 +02:00
2017-11-25 07:38:52 +01:00
perl Makefile.PL
make
make install DESTDIR=$PKG
2015-05-06 13:50:40 +02:00
2017-11-25 07:38:52 +01:00
# Remove perlcrap
find $PKG -type f \( \
-name '.packlist' -or \
-name '*.bs' -or \
-name 'autosplit.ix' -or \
-name 'perllocal.pod' \) -delete
2008-09-16 15:55:48 +02:00
2017-11-25 07:38:52 +01:00
# Remove empty directories
find $PKG -depth -empty -exec rm -rf {} \;
2008-09-16 15:55:48 +02:00
}