contrib/p5-locale-gettext/Pkgfile

28 lines
714 B
Plaintext
Raw Normal View History

2007-02-17 03:19:35 +01:00
# Description: Locale::gettext - Interface to C library functions for internatialization.
# URL: http://search.cpan.org/dist/gettext/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2007-02-17 03:19:35 +01:00
# Packager: bashy, ronny kornexl at online de
name=p5-locale-gettext
2016-03-08 12:49:43 +01:00
version=1.07
release=1
source=(http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-$version.tar.gz)
2007-02-17 03:19:35 +01:00
build() {
2016-03-08 12:49:43 +01:00
cd Locale-gettext-$version
2007-02-17 03:19:35 +01:00
perl Makefile.PL
make OPTIMIZE="$CFLAGS"
make DESTDIR=$PKG install
# Remove perlcrap
find $PKG \
-name '.packlist' -delete -or \
-name '*.bs' -delete -or \
-name 'autosplit.ix' -delete -or \
-name 'perllocal.pod' -delete
# Remove empty directories
find $PKG -depth -empty -exec rm -rf {} \;
}