diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-05-30 21:04:59 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-05-30 21:04:59 (GMT) |
commit | 0538d723d3b7a0ceb8747041bdbec7a10868e627 (patch) | |
tree | 60dffa859f954e7903b6ffd7e2540f461ea24a8f /abs | |
parent | 9fedf92f0b8a104583fa829a84aa45979a3f492b (diff) | |
download | linhes_pkgbuild-0538d723d3b7a0ceb8747041bdbec7a10868e627.zip linhes_pkgbuild-0538d723d3b7a0ceb8747041bdbec7a10868e627.tar.gz linhes_pkgbuild-0538d723d3b7a0ceb8747041bdbec7a10868e627.tar.bz2 |
perl-locale-maketext-lexicon: update to 1.00
Diffstat (limited to 'abs')
-rw-r--r-- | abs/core/perl_modules/perl-locale-maketext-lexicon/PKGBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/abs/core/perl_modules/perl-locale-maketext-lexicon/PKGBUILD b/abs/core/perl_modules/perl-locale-maketext-lexicon/PKGBUILD index 9011337..65bbe42 100644 --- a/abs/core/perl_modules/perl-locale-maketext-lexicon/PKGBUILD +++ b/abs/core/perl_modules/perl-locale-maketext-lexicon/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 56446 2011-10-07 10:01:16Z spupykin $ +# $Id$ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Charles Mauch <cmauch@gmail.com> pkgname=perl-locale-maketext-lexicon -pkgver=0.91 -pkgrel=1 +pkgver=1.00 +pkgrel=2 pkgdesc="Perl/CPAN Module Locale::Maketext::Lexicon : Use other catalog formats in Maketext" arch=(any) depends=(perl) @@ -12,17 +12,17 @@ url="http://search.cpan.org/dist/Locale-Maketext-Lexicon" license=("GPL" "PerlArtistic") options=(!emptydirs) source=("http://search.cpan.org/CPAN/authors/id/D/DR/DRTECH/Locale-Maketext-Lexicon-$pkgver.tar.gz") -md5sums=('ead74d03d40c72cd52d4d70771bbd122') +md5sums=('51acf0cb00cc01a2c8f560d74dd6c593') build() { - cd $srcdir/Locale-Maketext-Lexicon-$pkgver + cd "$srcdir"/Locale-Maketext-Lexicon-$pkgver PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make } package() { - cd $srcdir/Locale-Maketext-Lexicon-$pkgver - make install DESTDIR=$pkgdir - find $pkgdir -name '.packlist' -delete - find $pkgdir -name '*.pod' -delete + cd "$srcdir"/Locale-Maketext-Lexicon-$pkgver + make install DESTDIR="$pkgdir" + find "$pkgdir" -name '.packlist' -delete + find "$pkgdir" -name '*.pod' -delete } |