summaryrefslogtreecommitdiff
path: root/repo/perl-module-build/perl-module-build.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-06 21:25:48 +0000
committerdavidovski <david@davidovski.xyz>2022-06-06 21:25:48 +0000
commitccc722b7ed330198d82a3cf28ead76d6d107a70a (patch)
tree7611b3cc4f3ca681524fa28b174a0253eb802e0e /repo/perl-module-build/perl-module-build.xibuild
parent9ee32689f0b57b9e1de6d22c84ce8e3700b6122b (diff)
added java
Diffstat (limited to 'repo/perl-module-build/perl-module-build.xibuild')
-rw-r--r--repo/perl-module-build/perl-module-build.xibuild30
1 files changed, 30 insertions, 0 deletions
diff --git a/repo/perl-module-build/perl-module-build.xibuild b/repo/perl-module-build/perl-module-build.xibuild
new file mode 100644
index 0000000..8c88836
--- /dev/null
+++ b/repo/perl-module-build/perl-module-build.xibuild
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+NAME="perl-module-build"
+DESC="Build and install Perl modules"
+
+MAKEDEPS=" perl"
+
+PKG_VER=0.4231
+SOURCE="https://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-$PKG_VER.tar.gz"
+
+prepare() {
+ export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
+ perl Build.PL installdirs=vendor
+}
+
+build() {
+ export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
+ ./Build
+}
+
+check() {
+ ./Build test
+}
+
+
+package() {
+ ./Build install destdir="$PKG_DEST"
+ find "$PKG_DEST" \( -name perllocal.pod -o -name .packlist \) -delete
+}
+