mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
883 B
Bash
25 lines
883 B
Bash
# $Id: PKGBUILD 2022 2009-09-07 15:29:19Z cbrannon $
|
|
# This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman
|
|
# Maintainer: Chris Brannon <cmbrannon79@gmail.com>
|
|
# Contributor: François Charette <firmicus ατ gmx δοτ net>
|
|
|
|
pkgname=libxml-perl
|
|
pkgver=0.08
|
|
pkgrel=2
|
|
pkgdesc="Perl library for working with XML"
|
|
arch=('any')
|
|
url="http://search.cpan.org/~KMACLEOD/libxml-perl"
|
|
license=('GPL' 'PerlArtistic')
|
|
depends=('perlxml>=2.19')
|
|
options=('!emptydirs')
|
|
source=(http://www.cpan.org/authors/id/K/KM/KMACLEOD/libxml-perl-$pkgver.tar.gz)
|
|
md5sums=('0ed5fbdda53d1301ddaed88db10503bb')
|
|
|
|
build() {
|
|
cd $startdir/src/libxml-perl-$pkgver
|
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
|
|
make || return 1
|
|
make install DESTDIR=$startdir/pkg || return 1
|
|
find $startdir/pkg -name '.packlist' -delete
|
|
find $startdir/pkg -name '*.pod' -delete
|
|
}
|