blob: f31b57f628f084ca6b8f528203c269ca5e3b2105 (
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
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/bin/sh
MAKEDEPS="make sed"
DEPS="gdbm musl bzip2 zlib tar"
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
export CF_OLD=$CFLAGS
export CFLAGS="$CFLAGS -DNO_POSIX_2008_LOCALE"
export CFLAGS="$CFLAGS -D_GNU_SOURCE"
rm -rf cpan/Compress-Raw-Zlib/zlib-src
sed -i '/\(bzip2\|zlib\)-src/d' MANIFEST
rm -rf cpan/Compress-Raw-Bzip2/bzip2-src
sed -i '/\(bzip2\|zzz\)-src/d' MANIFEST
sh Configure -des -Dprefix=/usr \
-Dvendorprefix=/usr \
-Dprivlib=/usr/lib/perl5/5.34/core_perl \
-Darchlib=/usr/lib/perl5/5.34/core_perl \
-Dsitelib=/usr/lib/perl5/5.34/site_perl \
-Dsitearch=/usr/lib/perl5/5.34/site_perl \
-Dvendorlib=/usr/lib/perl5/5.34/vendor_perl \
-Dvendorarch=/usr/lib/perl5/5.34/vendor_perl \
-Dman1dir=/usr/share/man/man1 \
-Dman3dir=/usr/share/man/man3 \
-Dpager="/usr/bin/less -isR" \
-Duseshrplib \
-Dusethreads \
-Dcccdlflags='-fPIC' -Dccdlflags='-rdynamic'
}
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
}
|