summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0c87568d246629839ca23a195d7873de7fc74c20 (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
# Maintainer: Yardena Cohen <yardenack at gmail dot com>

cpaname=MooseX-MungeHas
cpanauthor=TOBYINK
pkgname=perl-moosex-mungehas
pkgver=0.011
pkgrel=1
pkgdesc="Perl MooseX::MungeHas CPAN module"
arch=('any')
url="http://search.cpan.org/dist/${cpaname}/"
license=('unknown')
options=('!emptydirs')
checkdepends=(
    'perl-moo'
    'perl-moose'
    'perl-mouse'
)
depends=(
    'perl'
    'perl-test-fatal'
    'perl-test-requires'
    'perl-type-tiny'
)
source=("http://www.cpan.org/authors/id/${cpanauthor::1}/${cpanauthor::2}/${cpanauthor}/${cpaname}-${pkgver}.tar.gz")
sha256sums=('863bc8e9049f2c06f0af15fa4b413f287be2c0821d1981661803ceae36d06495')

build() {
	 cd "${srcdir}/${cpaname}-${pkgver}"
	 perl Makefile.PL
	 make
}

check() {
	 cd "${srcdir}/${cpaname}-${pkgver}"
	 make test
}

package () {
	 cd "${srcdir}/${cpaname}-${pkgver}"
	 make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
}