blob: 88334658a1d7b8ae06dc21608184c5078dbbcb14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
DEPS=(gdbm glibc libxcrypt)
PKG_VER=5.34.0
SOURCE=https://www.cpan.org/src/5.0/perl-$PKG_VER.tar.gz
DESC="The Practical Extraction and Report Language"
build () {
#export BUILD_ZLIB=False
#export BUILD_BZIP2=0
sh Configure -des -Dprefix=/usr -Dlibs=-lm -Uloclibpth -Ulocincpth
make
make test
make DESTDIR=$PKG_DEST install
unset BUILD_ZLIB BUILD_BZIP2
}
|