mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
34 lines
935 B
Bash
34 lines
935 B
Bash
# Maintainer: Jason St. John <jstjohn .. purdue . edu>
|
|
|
|
_perlmod=Config-General
|
|
_modnamespace=Config
|
|
pkgname=perl-config-general
|
|
pkgver=2.51
|
|
pkgrel=3
|
|
pkgdesc="Config::General - Generic Config Module"
|
|
arch=('any')
|
|
license=('GPL' 'PerlArtistic')
|
|
options=('!emptydirs')
|
|
depends=('perl>=5.10.0')
|
|
url="http://search.cpan.org/dist/$_perlmod"
|
|
source=("http://cpan.perl.org/modules/by-module/$_modnamespace/$_perlmod-$pkgver.tar.gz")
|
|
sha512sums=('71a0d607ab69b82aa6ff3eb74efe7d90b67859331ae3fe2d6d14829e71eedacdeb98506e38c6506b4b7400ed31cd20de09b5b8ef86fe6a23599677aa8e5f5982')
|
|
|
|
build() {
|
|
cd "$srcdir/$_perlmod-$pkgver"
|
|
|
|
# Install module in vendor directories.
|
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$srcdir/$_perlmod-$pkgver"
|
|
# An upstream bug causes 1 test to fail, so error out silently.
|
|
make test || return 0
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$_perlmod-$pkgver"
|
|
make install DESTDIR="$pkgdir/"
|
|
}
|