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

cpaname=PerlX-Define
cpanauthor=TOBYINK
pkgname=perl-perlx-define
pkgver=0.101
pkgrel=1
pkgdesc="Perl PerlX::Define CPAN module"
arch=('any')
url="http://search.cpan.org/dist/${cpaname}/"
license=('unknown')
options=('!emptydirs')
depends=(
    'perl'
    'perl-keyword-simple'
    'perl-namespace-clean'
)
source=("http://www.cpan.org/authors/id/${cpanauthor::1}/${cpanauthor::2}/${cpanauthor}/${cpaname}-${pkgver}.tar.gz")
sha256sums=('ea50c41793bcc9cfc1c2a2d3f205935f26fa774830f09faa9ae82b0f57c61431')

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}"
}