summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bb5f493214ebbe3b45db17fa2bb789a42434208f (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
# Maintainer: Ondrej Kucera <ondrej.kucera@centrum.cz>
_perlmod=XML-CompactTree
pkgname=perl-xml-compacttree
pkgver=0.03
pkgrel=2
pkgdesc="Builder of compact tree structures from XML documents"
arch=("any")
url="http://search.cpan.org/~pajas/$_perlmod/"
license=('GPL' 'PerlArtistic')
groups=()
depends=('perl')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
install=
source=(http://search.cpan.org/CPAN/authors/id/P/PA/PAJAS/$_perlmod-$pkgver.tar.gz)
md5sums=('f69c3390578f3e70b4f664a6bcfe9f7e')

build() {
  cd "$srcdir/$_perlmod-$pkgver"

  # Install module in vendor directories.
  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
  make
}

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

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