mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
24 lines
911 B
Bash
24 lines
911 B
Bash
# Maintainer: Allan McRae <mcrae_allan@hotmail.com>
|
|
# Contributor: François Charette <firmicus ατ gmx δοτ net>
|
|
|
|
pkgname=perl-soap-lite
|
|
pkgver=0.710.08
|
|
pkgrel=1
|
|
pkgdesc="Client and server side SOAP implementation"
|
|
arch=('i686' 'x86_64')
|
|
url="http://search.cpan.org/dist/SOAP-Lite"
|
|
license=('GPL' 'PerlArtistic')
|
|
depends=('perl>=5.10.0' 'perl-crypt-ssleay' 'perl-mime-lite' 'perl-libwww' 'perl-uri' \
|
|
'perl-mime-tools' 'perl-io-socket-ssl' 'perlxml>=2.23' 'perl-fcgi')
|
|
options=('!emptydirs')
|
|
source=(http://www.cpan.org/authors/id/M/MK/MKUTTER/SOAP-Lite-$pkgver.tar.gz)
|
|
md5sums=('e7869ad91fee76cc1782fe29fe3a989d')
|
|
|
|
build() {
|
|
cd $startdir/src/SOAP-Lite-$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
|
|
}
|