mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
852 B
Bash
23 lines
852 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Maintainer: Charles Mauch <cmauch@gmail.com>
|
||
|
|
||
|
pkgname=perl-locale-maketext-lexicon
|
||
|
pkgver=0.77
|
||
|
pkgrel=1
|
||
|
pkgdesc="Perl/CPAN Module Locale::Maketext::Lexicon : Use other catalog formats in Maketext"
|
||
|
arch=("i686" "x86_64")
|
||
|
url="http://search.cpan.org/dist/Locale-Maketext-Lexicon"
|
||
|
license=("GPL" "Artistic")
|
||
|
source=("http://search.cpan.org/CPAN/authors/id/D/DR/DRTECH/Locale-Maketext-Lexicon-$pkgver.tar.gz")
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/Locale-Maketext-Lexicon-$pkgver
|
||
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
|
||
|
make || return 1
|
||
|
make install DESTDIR=$startdir/pkg || return 1
|
||
|
find $startdir/pkg -name '.packlist' -delete
|
||
|
find $startdir/pkg -name '*.pod' -delete
|
||
|
}
|
||
|
md5sums=('622dada722fb6db0e49e453c843af83c')
|