summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rwxr-xr-xperl-cpan/module-build/DEPENDS2
-rwxr-xr-xperl-cpan/module-build/DETAILS18
-rw-r--r--perl-cpan/module-build/HISTORY3
4 files changed, 24 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c67d921992..5949f4e102 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,7 @@
AF_INET/AF_INET6 sockets
* perl-cpan/inc-latest: new spell, use modules bundled in inc/ if they
are newer than installed ones
+ * perl-cpan/module-build: new spell, build and install Perl modules
2015-06-17 Treeve Jelbert <treeve@sourcemage.org>
* utils/consolekit2: added, fork of consolekit (unmaintained)
diff --git a/perl-cpan/module-build/DEPENDS b/perl-cpan/module-build/DEPENDS
new file mode 100755
index 0000000000..f8e79f63db
--- /dev/null
+++ b/perl-cpan/module-build/DEPENDS
@@ -0,0 +1,2 @@
+depends perl &&
+depends inc-latest
diff --git a/perl-cpan/module-build/DETAILS b/perl-cpan/module-build/DETAILS
new file mode 100755
index 0000000000..8da653b966
--- /dev/null
+++ b/perl-cpan/module-build/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=module-build
+ VERSION=0.4214
+ SOURCE="Module-Build-${VERSION}.tar.gz"
+ SOURCE_URL[0]=$PERL_CPAN_URL/authors/id/L/LE/LEONT/${SOURCE}
+ SOURCE_HASH=sha512:33bc4adfd21cfa3ff3489fd4ed2a6dfd9b4bd9bcdb7839a76088876fcf5bc9b435c2d246e9eee60a6ae3ac6c6d06a377d8dc0440ec725a4985a8dd1746c445b2
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/Module-Build-${VERSION}"
+ WEB_SITE="http://search.cpan.org/~leont/Module-Build-${VERSION}/lib/Module/Build.pm"
+ LICENSE[0]=ART
+ ENTERED=20150718
+ SHORT="Build and install Perl modules"
+cat << EOF
+Module::Build is a system for building, testing, and installing Perl
+modules. It is meant to be an alternative to ExtUtils::MakeMaker. Developers
+may alter the behavior of the module through subclassing in a much more
+straightforward way than with MakeMaker. It also does not require a make on
+your system - most of the Module::Build code is pure-perl and written in a
+very cross-platform way.
+EOF
diff --git a/perl-cpan/module-build/HISTORY b/perl-cpan/module-build/HISTORY
new file mode 100644
index 0000000000..7abf37cc6f
--- /dev/null
+++ b/perl-cpan/module-build/HISTORY
@@ -0,0 +1,3 @@
+2015-07-18 Florian Franzmann <siflfran@hawo.stw.uni-erlangen.de>
+ * DEPENDS, DETAILS: spell created
+