summaryrefslogtreecommitdiff
path: root/perl-chemistry-elements/PKGBUILD
blob: c429adb8ae52c513c2fe5061c9b72fc0f3083240 (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
42
43
44
45
46
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=perl-chemistry-elements
pkgver=1.07
pkgrel=1
pkgdesc="Perl extension for working with Chemical Elements"
arch=('any')
url="https://github.com/briandfoy/chemistry-elements"
license=('GPL' 'PerlArtistic')
groups=()
depends=('perl')
makedepends=()
checkdepends=('perl-test-pod')
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
_distdir="Chemistry-Elements-${pkgver}"
source=("http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/${_distdir}.tar.gz")
sha512sums=('bfed7ab91c2554f01cb8923ac311dae8986fdbdbde35f6868aa59d3c1b9c10ac047e222b5473204fd4b464e3fc93ac7fb80a907b57ceeb9bea3afb1d7850445f')

build() {

    cd ${_distdir}

    perl Makefile.PL
    make

}

check() {

    cd ${_distdir}

    make test

}

package() {

    cd ${_distdir}

    make DESTDIR="${pkgdir}" install

}