mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added community/perl-test-output
This commit is contained in:
parent
241b111b2a
commit
4d04087bb4
1 changed files with 39 additions and 0 deletions
39
community/perl-test-output/PKGBUILD
Normal file
39
community/perl-test-output/PKGBUILD
Normal file
|
@ -0,0 +1,39 @@
|
|||
# $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
|
||||
pkgver=1.01
|
||||
pkgrel=1.1
|
||||
pkgdesc='Utilities to test STDOUT and STDERR messages'
|
||||
arch=('any')
|
||||
license=('GPL' 'PerlArtistic')
|
||||
depends=('perl-sub-exporter'
|
||||
'perl-test-tester'
|
||||
'perl-test-pod'
|
||||
'perl-test-pod-coverage')
|
||||
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")
|
||||
md5sums=('bea1fe88e8725a5b3f7b66e69fc83dd2')
|
||||
|
||||
build() {
|
||||
cd Test-Output-$pkgver
|
||||
USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd Test-Output-$pkgver
|
||||
make test
|
||||
}
|
||||
|
||||
package() {
|
||||
cd Test-Output-$pkgver
|
||||
make install DESTDIR="$pkgdir/"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 ft=sh et:
|
Loading…
Reference in a new issue