From ccc722b7ed330198d82a3cf28ead76d6d107a70a Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 6 Jun 2022 21:25:48 +0000 Subject: added java --- repo/perl-module-build/perl-module-build.xibuild | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 repo/perl-module-build/perl-module-build.xibuild (limited to 'repo/perl-module-build') 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 +} + -- cgit v1.2.1