blob: cfd2a703e6215459348cbf90eb042cbc3ef4a2c0 (
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
|
# $Id$
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: pzl <alsoelp _at_ gmail>
pkgname=perl-devel-checklib
pkgver=1.11
pkgrel=3
pkgdesc="Module to check if other perl modules are installed"
arch=('any')
url='http://search.cpan.org/dist/Devel-CheckLib/'
license=('PerlArtistic' 'GPL')
depends=('perl')
checkdepends=('perl-io-captureoutput')
options=('!emptydirs')
source=("http://search.cpan.org/CPAN/authors/id/M/MA/MATTN/Devel-CheckLib-${pkgver}.tar.gz")
sha512sums=('21a64cb2ec4f3769d604eba151074daa841d40d2073a93ec186e82d8496f5ca05728c5352a31c4f07765956b85cb3144225edb51b84245b0582267af55ef2e2f')
build() {
cd Devel-CheckLib-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd Devel-CheckLib-$pkgver
make test
}
package() {
cd Devel-CheckLib-$pkgver
make install DESTDIR="$pkgdir"
}
|