opt/p5-uri/Pkgfile

27 lines
594 B
Plaintext
Raw Normal View History

2008-09-16 15:55:48 +02:00
# Description: Perl Uniform Resource Identifiers Library.
2019-08-31 03:57:31 +02:00
# URL: https://metacpan.org/release/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
2019-08-31 03:57:31 +02:00
version=1.76
release=1
source=(https://cpan.metacpan.org/authors/id/O/OA/OALDERS/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
2019-08-31 03:57:31 +02:00
perl Makefile.PL INSTALLDIRS=vendor
2017-11-25 07:38:52 +01:00
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
}