aboutsummaryrefslogtreecommitdiffstats
path: root/main/perl-file-rsync/APKBUILD
blob: 5bea99c7df96bc620fd15fdc20da42ec1d7e1c93 (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
33
34
35
36
37
38
39
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer:  Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=perl-file-rsync
_realname=File-RsyncP
pkgver=0.68
pkgrel=3
pkgdesc="Perl rsync client"
url="http://search.cpan.org/~cbarratt/File-RsyncP-0.68/"
arch="all"
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
perl-file-rsync-parallell-build-fix.patch"

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

prepare() {
	cd $_builddir
	patch -p1 <../perl-file-rsync-parallell-build-fix.patch || return 1
}

build() {
	cd $_builddir
	PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
	make config && 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
402df47ad01369de0ffc75754529d6e4  perl-file-rsync-parallell-build-fix.patch"