summaryrefslogtreecommitdiff
path: root/perl-xmlrpc-lite/PKGBUILD
blob: d50b2158962b7c761e6a9480ebb31bfd5651ea28 (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
# Maintainer:  Erich Eckner <arch at eckner dot net>
# Contributor: Yardena Cohen <yardenack at gmail dot com>

_cpaname=XMLRPC-Lite
_cpanauthor=PHRED
pkgname=perl-xmlrpc-lite
pkgver=0.717
pkgrel=1
pkgdesc="client and server implementation of XML-RPC protocol"
arch=('any')
url="http://search.cpan.org/dist/${_cpaname}/"
license=('unknown')
options=('!emptydirs')
depends=('perl' 'perl-soap-lite')
source=("http://search.cpan.org/CPAN/authors/id/${_cpanauthor::1}/${_cpanauthor::2}/${_cpanauthor}/${_cpaname}-${pkgver}.tar.gz")
sha256sums=('3a9fa5f2cb1faf8b7c66b4c386eab35cac6088afc4dbc757d4f77d284dab4524')

build() {
	 cd "${srcdir}/${_cpaname}-${pkgver}"
	 perl Makefile.PL
	 make
}

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

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