aboutsummaryrefslogtreecommitdiff
path: root/core/perl/build
diff options
context:
space:
mode:
Diffstat (limited to 'core/perl/build')
-rwxr-xr-xcore/perl/build43
1 files changed, 43 insertions, 0 deletions
diff --git a/core/perl/build b/core/perl/build
new file mode 100755
index 00000000..a81dc976
--- /dev/null
+++ b/core/perl/build
@@ -0,0 +1,43 @@
+#!/bin/sh -e
+
+export BUILD_ZLIB=0
+export BUILD_BZIP2=0
+export LDFLAGS="$LDFLAGS -pthread"
+export CFLAGS="$CFLAGS -DNO_POSIX_2008_LOCALE -D_GNU_SOURCE"
+
+./Configure \
+ -des \
+ -Dprefix=/usr \
+ -Dvendorprefix=/usr \
+ -Dusevendorprefix \
+ -Duseshrplib \
+ -Dusesoname \
+ -Dusethreads \
+ -Dinc_version_list=none \
+ -Dd_sockaddr_in6=define \
+ -Dcccdlflags=-fPIC \
+ -Dccflags="$CFLAGS" \
+ -Dlddlflags="-shared $LDFLAGS" \
+ -Dldflags="$LDFLAGS" \
+ -Doptimize="-Wall $CFLAGS" \
+ -Dcc="${CC:-gcc}" \
+ -Dar="${AR:-ar}" \
+ -Dnm="${NM:-nm}" \
+ -Dranlib="${RANLIB:-ranlib}" \
+ -Dperl_static_inline="static __inline__" \
+ -Dd_static_inline
+
+make
+make DESTDIR="$1" install
+
+# Remove all unneeded files.
+find "$1" -name \*.pod -delete
+find "$1" -name .packlist -delete
+find "$1" -name README\* -delete
+find "$1" -name TODO\* -delete
+find "$1" -name Change\* -delete
+find "$1" -name \*.bs -delete
+find "$1" -name \*.0 -type f -delete
+
+# Fix permissions.
+find "$1/usr/lib" -type f -exec chmod 644 {} \;