summaryrefslogtreecommitdiff
path: root/repo/system/perl.xibuild
blob: 746ba639fb63fe2453d61c4959d7454c44cceb20 (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
#!/bin/sh

MAKEDEPS="make"
DEPS="gdbm glibc libxcrypt bzip2 zlib"

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"

prepare () {
    export BUILD_ZLIB=False
    export BUILD_BZIP2=0

    sh Configure -des -Dprefix=/usr -Dlibs=-lm -Uloclibpth -Ulocincpth
}

build () {
    make
}

check () {
    make test || true
}

package () {
    make DESTDIR="$PKG_DEST" install 
    for f in $(find /export -maxdepth 1 -type f); do echo $f; rm $f; done
    unset BUILD_ZLIB BUILD_BZIP2
}