opt/p5-uri/Pkgfile

26 lines
568 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
2021-03-12 12:58:36 +01:00
version=5.09
2019-08-31 03:57:31 +02:00
release=1
2021-03-12 12:58:36 +01:00
source=(https://www.cpan.org/modules/by-module/URI/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
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
}