summaryrefslogtreecommitdiff
path: root/repo/perl-path-tiny/perl-path-tiny.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-27 23:09:07 +0100
committerdavidovski <david@davidovski.xyz>2022-06-27 23:09:07 +0100
commitf6332a43c35387c4a2dea1746be5fd092890ae0e (patch)
treed6599f63de04096f3fc21a98e0b3bb39d55a3531 /repo/perl-path-tiny/perl-path-tiny.xibuild
parentf13e0cac13f90f7f57bce3b26b2e6383de6e4ad2 (diff)
added lf and iptables
Diffstat (limited to 'repo/perl-path-tiny/perl-path-tiny.xibuild')
-rw-r--r--repo/perl-path-tiny/perl-path-tiny.xibuild26
1 files changed, 26 insertions, 0 deletions
diff --git a/repo/perl-path-tiny/perl-path-tiny.xibuild b/repo/perl-path-tiny/perl-path-tiny.xibuild
new file mode 100644
index 0000000..18f2fe9
--- /dev/null
+++ b/repo/perl-path-tiny/perl-path-tiny.xibuild
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+NAME="perl-path-tiny"
+DESC="File path utility"
+
+MAKEDEPS=""
+
+PKG_VER=0.122
+SOURCE="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Path-Tiny-$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
+}
+
+check() {
+ export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
+ make test
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+ find "$PKG_DEST" \( -name perllocal.pod -o -name .packlist \) -delete
+}
+