mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
23 lines
713 B
Bash
23 lines
713 B
Bash
# Maintainer: François Charette <firmicus ατ gmx δοτ net>
|
|
|
|
pkgname=perl-xml-libxslt
|
|
pkgver=1.68
|
|
pkgrel=2
|
|
pkgdesc="Interface to the gnome libxslt library "
|
|
arch=('i686' 'x86_64')
|
|
url="http://search.cpan.org/dist/XML-LibXSLT"
|
|
license=('GPL' 'PerlArtistic')
|
|
depends=('perl-xml-libxml>=1.67' 'libxslt')
|
|
options=('!emptydirs')
|
|
source=(http://www.cpan.org/authors/id/P/PA/PAJAS/XML-LibXSLT-$pkgver.tar.gz)
|
|
md5sums=('23265ad14469b3eede5833f205198a6f')
|
|
|
|
build() {
|
|
cd $srcdir/XML-LibXSLT-$pkgver
|
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
|
|
make || return 1
|
|
make install DESTDIR=$pkgdir || return 1
|
|
find $pkgdir -name '.packlist' -delete
|
|
find $pkgdir -name '*.pod' -delete
|
|
}
|
|
|