summaryrefslogtreecommitdiff
path: root/repo/system/perl.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/perl.xibuild')
-rw-r--r--repo/system/perl.xibuild18
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/system/perl.xibuild b/repo/system/perl.xibuild
new file mode 100644
index 0000000..cd3c884
--- /dev/null
+++ b/repo/system/perl.xibuild
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+DEPS=(gdbm glibc libxcrypt)
+
+SOURCE=https://www.cpan.org/src/5.0/perl-5.34.0.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
+}