summaryrefslogtreecommitdiffstats
path: root/abs/core/perl_modules/libxml-perl/PKGBUILD
blob: 055b08cfd1281c5e6e906c99fd1afecffb14741c (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
# $Id$
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Limao Luo <luolimao+AUR@gmail.com>
# Contributor: Chris Brannon <cmbrannon79@gmail.com>
# Contributor: François Charette <firmicus@gmx.net>

pkgname=libxml-perl
pkgver=0.08
pkgrel=6
pkgdesc="Perl library for working with XML"
arch=('any')
url="http://search.cpan.org/~KMACLEOD/$pkgname"
license=('GPL' 'PerlArtistic')
depends=('perl-xml-parser')
options=('!emptydirs')
source=("http://www.cpan.org/authors/id/K/KM/KMACLEOD/$pkgname-$pkgver.tar.gz")
sha512sums=('66c1874a04b746334d4324ab37ee057c6da7fa7191dffae2900e0832dab3b2ededc5cbdc5e838c0d57c22161c9cf196ab40b62f61338d4c994bda9fa7b1a7702')

build() {
  cd $pkgname-$pkgver
  perl Makefile.PL INSTALLDIRS=vendor PERL_MM_USE_DEFAULT=1
  make
}

check() {
  cd $pkgname-$pkgver
  make test
}

package() {
  make -C $pkgname-$pkgver/ DESTDIR="$pkgdir" install
  find "$pkgdir" -name '.packlist' -delete
  find "$pkgdir" -name '*.pod' -delete
}