PKGBUILDs/community/perl-test-output/PKGBUILD

41 lines
1 KiB
Bash
Raw Normal View History

2012-06-16 19:02:44 +00:00
# $Id: PKGBUILD 62156 2012-01-16 22:25:14Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - removing extraneous space after perl-test-pod depends line, since it apparently
# takes a goddamn inquisition to get upstream maintainers to fix shit like this.
pkgname=perl-test-output
2013-07-10 14:51:00 +00:00
pkgver=1.02
2013-07-29 18:19:00 +00:00
pkgrel=2
2012-06-16 19:02:44 +00:00
pkgdesc='Utilities to test STDOUT and STDERR messages'
arch=('any')
license=('GPL' 'PerlArtistic')
depends=('perl-sub-exporter'
'perl-test-tester'
'perl-test-pod'
2013-07-29 18:19:00 +00:00
'perl-test-pod-coverage'
'perl-capture-tiny')
2012-06-16 19:02:44 +00:00
url='http://search.cpan.org/dist/Test-Output'
options=('!emptydirs')
source=("http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Test-Output-$pkgver.tar.gz")
2013-07-10 14:51:43 +00:00
md5sums=('d80890160737cdf4c3241d48428d33ab')
2012-06-16 19:02:44 +00:00
build() {
cd Test-Output-$pkgver
USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd Test-Output-$pkgver
2013-07-29 18:19:00 +00:00
make test
2012-06-16 19:02:44 +00:00
}
package() {
cd Test-Output-$pkgver
make install DESTDIR="$pkgdir/"
}
# vim:set ts=2 sw=2 ft=sh et: