summaryrefslogtreecommitdiffstats
path: root/main/perl-file-rsync/APKBUILD
blob: 11500774a487a3566435ec38c6807cc0f6f1a6ba (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
# Contributor: Leonardo Arena <rnalrd@gmail.com>
# Maintainer:  Leonardo Arena <rnalrd@gmail.com>
pkgname=perl-file-rsync
_realname=File-RsyncP
pkgver=0.68
pkgrel=0
pkgdesc="Perl rsync client"
url="http://search.cpan.org/~cbarratt/File-RsyncP-0.68/"
license="GPL PerlArtistic"
depends="perl"
makedepends="perl-dev"
install=
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/C/CB/CBARRATT/$_realname-$pkgver.tar.gz"

_builddir="$srcdir/$_realname-$pkgver"

build() {
	cd $_builddir
	PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
	make || return 1
}

package() {
	cd $_builddir
	make DESTDIR="$pkgdir" install
	# creates file collision among perl modules
	find "$pkgdir" -name perllocal.pod -delete
}

md5sums="ed47c5ef7ff835415692f18137cb0cf9  File-RsyncP-0.68.tar.gz"