opt/p5-uri/Pkgfile

30 lines
697 B
Plaintext
Raw Normal View History

2008-09-16 15:55:48 +02:00
# Description: Perl Uniform Resource Identifiers Library.
2010-09-28 11:07:23 +02:00
# URL: http://www.cpan.org/modules/by-module/URI/GAAS/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Han Boetes han at mijncomputer dot nl
# Depends on: perl
2008-09-16 15:55:48 +02:00
name=p5-uri
2011-08-16 10:05:07 +02:00
version=1.59
2009-09-28 10:20:36 +02:00
release=1
2010-04-27 18:06:39 +02:00
source=(http://www.cpan.org/modules/by-module/URI/GAAS/URI-$version.tar.gz)
2008-09-16 15:55:48 +02:00
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
}