contrib/p5-uri/Pkgfile

26 lines
581 B
Plaintext
Raw Normal View History

2023-08-19 11:56:53 +02:00
# Description: Perl Uniform Resource Identifiers Library
# URL: https://metacpan.org/release/URI
# Maintainer: Tim Biermann, tbier at posteo dot de
name=p5-uri
2024-03-28 17:15:42 +01:00
version=5.28
2023-08-19 11:56:53 +02:00
release=1
source=(https://www.cpan.org/modules/by-module/URI/URI-$version.tar.gz)
build() {
cd URI-$version
perl Makefile.PL INSTALLDIRS=vendor
make
make install DESTDIR=$PKG
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 {} \;
}