aboutsummaryrefslogtreecommitdiffstats
path: root/main/perl-inline/APKBUILD
blob: 6be7d2dc0fedffc10ae418a9ffd65d432963eb54 (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
40
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer:  Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=perl-inline
_realname=Inline
vmajor=0.50
vminor=01
pkgver=${vmajor}.${vminor}
pkgrel=0
pkgdesc="Write Perl subroutines in other programming languages"
url="http://search.cpan.org/~sisyphus/"
arch="noarch"
license="Unknown"
depends="perl"
makedepends="perl-dev"
install=
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/S/SI/SISYPHUS/$_realname-${vmajor}_${vminor}.tar.gz"

_builddir="$srcdir"/$_realname-${vmajor}_${vminor}

prepare() {
	cd $_builddir
	return 0
}

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="1e1aa6e83dad5baecb712b1873b3902a  Inline-0.50_01.tar.gz"