summaryrefslogtreecommitdiff
path: root/repo/perl-config-autoconf
diff options
context:
space:
mode:
Diffstat (limited to 'repo/perl-config-autoconf')
-rw-r--r--repo/perl-config-autoconf/perl-config-autoconf.xibuild21
1 files changed, 21 insertions, 0 deletions
diff --git a/repo/perl-config-autoconf/perl-config-autoconf.xibuild b/repo/perl-config-autoconf/perl-config-autoconf.xibuild
new file mode 100644
index 0000000..68ad5d6
--- /dev/null
+++ b/repo/perl-config-autoconf/perl-config-autoconf.xibuild
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+NAME="perl-config-autoconf"
+DESC="A module to implement some of AutoConf macros in pure perl."
+
+MAKEDEPS=" perl"
+
+PKG_VER=0.320
+SOURCE="https://cpan.metacpan.org/authors/id/A/AM/AMBS/Config-AutoConf-$PKG_VER.tar.gz"
+
+build() {
+ export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
+ PERL_MM_USE_DEFAULT=1 perl -I. Makefile.PL INSTALLDIRS=vendor
+ make
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+ find "$PKG_DEST" \( -name perllocal.pod -o -name .packlist \) -delete
+}
+