core/perl-locale-gettext/PKGBUILD

34 lines
1.2 KiB
Bash
Raw Normal View History

# $Id: PKGBUILD 68093 2010-02-10 18:15:58Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Mark Rosenstand <mark@borkware.net>
# Contributor: Paul Mattal <paul@archlinux.org>
pkgname=perl-locale-gettext
_realname=gettext
pkgver=1.05
pkgrel=5
pkgdesc="Permits access from Perl to the gettext() family of functions"
arch=('i686' 'x86_64')
license=('GPL' 'PerlArtistic')
url="http://search.cpan.org/dist/${_realname}/"
depends=('gettext' 'perl>=5.10.0')
options=(!emptydirs)
source=(http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/${_realname}-${pkgver}.tar.gz
compatibility-with-POSIX-module.patch)
md5sums=('f3d3f474a1458f37174c410dfef61a46'
'854302f34d01a2f8ae739187788973dd')
build() {
cd "${srcdir}/${_realname}-${pkgver}"
patch -Np1 -i ${srcdir}/compatibility-with-POSIX-module.patch || return 1
# install module in vendor directories.
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
make MAN1EXT=1p MAN3EXT=3pm || return 1
make install MAN1EXT=1p MAN3EXT=3pm DESTDIR="${pkgdir}" || return 1
# remove perllocal.pod and .packlist
find "${pkgdir}" -name perllocal.pod -delete
find "${pkgdir}" -name .packlist -delete
}