summaryrefslogtreecommitdiff
path: root/templates/perl/template
blob: 47a9f042aa725010cbc606d60b2a9a8577e8103d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pkgname=perl
version=5.42.2
upstream="https://www.cpan.org/src/5.0/perl-${version}.tar.gz"
build_no=1

function do_configure {
	./Configure -Dprefix=/usr -Dinstallprefix=/usr -Dman1dir=/usr/share/man/man1 -Dman1ext=1 -Dman3dir=/usr/share/man/man3 -Dman3ext=3pm -Dcc=gcc
}

function do_build {
	make -j$(nproc)
}

function do_install {
	make DESTDIR=${DESTDIR} install
	ln -s /usr/bin/perl /usr/sbin/perl
}