contrib/p5-uri/Pkgfile

32 lines
713 B
Plaintext
Raw Normal View History

2007-01-01 10:39:04 +01:00
# Description: Perl Uniform Resource Identifiers Library.
# URL: http://search.cpan.org/~gaas/URI-1.35/
2008-04-11 13:09:59 +02:00
# Maintainer: Lucas Hazel, lucas at die dot net dot au
2007-01-01 10:39:04 +01:00
# Packager: Han Boetes han at mijncomputer dot nl
#
# Depends on: perl
name=p5-uri
2008-07-11 14:27:35 +02:00
version=1.37
2007-01-01 10:39:04 +01:00
release=1
source=(ftp://ftp.demon.co.uk/pub/CPAN/modules/by-module/URI/URI-$version.tar.gz)
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
}