blob: b92570d0f93c9e99f55deae38d68f8f186f8c368 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Maintainer: gls < ghostlovescorebg at gmail dot com >
pkgname=perl-linux-lvm
pkgver=0.17
pkgrel=1
pkgdesc="Perl extension for accessing Logical Volume Manager (LVM) data structures in Linux."
_dist=Linux-LVM
arch=(any)
url="http://search.cpan.org/~raymor/$_perlmod-$pkgver/"
license=('PerlArtistic')
depends=('perl>=5.10.0')
options=('!emptydirs' purge)
source=("http://search.cpan.org/CPAN/authors/id/R/RA/RAYMOR/${_dist}-${pkgver}.tar.gz")
md5sums=('3ea9aafa7dbbe01c00d0ac70ae44b42b')
build() {
cd "$srcdir/$_dist-$pkgver"
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB ROOT
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
/usr/bin/perl Makefile.PL
make
}
check() {
cd "$srcdir/$_dist-$pkgver"
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB ROOT
export PERL_MM_USE_DEFAULT=1
make test
}
package() {
cd "$srcdir/$_dist-$pkgver"
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
}
# vim:set ts=2 sw=2 et:
|