From cb447620084a20be80d116c81c2e9ec110be7118 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 16 Jan 2022 01:23:51 +0000 Subject: restructured repo system --- repo/system/perl.xibuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 repo/system/perl.xibuild (limited to 'repo/system/perl.xibuild') 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 +} -- cgit v1.2.1