From dfafee80140f9f109b08a0dcf0fe15f3bcdc1282 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 21 Sep 2016 14:59:31 +0200 Subject: [PATCH] Libraries/pcre - added --- Libraries/pcre/build | 17 +++++++++++++++++ Libraries/pcre/modulefile | 20 ++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100755 Libraries/pcre/build create mode 100644 Libraries/pcre/modulefile diff --git a/Libraries/pcre/build b/Libraries/pcre/build new file mode 100755 index 0000000..7288355 --- /dev/null +++ b/Libraries/pcre/build @@ -0,0 +1,17 @@ +#!/usr/bin/env modbuild + +pbuild::configure() { + "${MODULE_SRCDIR}"/configure \ + --prefix="${PREFIX}" \ + || exit 1 +} + +pbuild::add_to_group 'Tools' +#pbuild::set_docfiles 'Copyright' 'ChangeLog' 'NEWS' 'README' +pbuild::make_all + +# Local Variables: +# mode: sh +# sh-basic-offset: 8 +# tab-width: 8 +# End: diff --git a/Libraries/pcre/modulefile b/Libraries/pcre/modulefile new file mode 100644 index 0000000..672f865 --- /dev/null +++ b/Libraries/pcre/modulefile @@ -0,0 +1,20 @@ +#%Module1.0 + +module-whatis "PCRE - Perl Compatible Regular Expressions" +module-url "http://www.pcre.org" +module-license "BSD" +module-maintainer "Achim Gsell " + +module-help " +The PCRE library is a set of functions that implement regular expression +pattern matching using the same syntax and semantics as Perl 5. PCRE has +its own native API, as well as a set of wrapper functions that correspond +to the POSIX regular expression API. The PCRE library is free, even for +building proprietary software. + +PCRE was originally written for the Exim MTA, but is now used by many +high-profile open source projects, including Apache, PHP, KDE, Postfix, +Analog, and Nmap. PCRE has also found its way into some well known +commercial products, like Apple Safari. Some other interesting projects +using PCRE include Chicken, Ferite, Onyx, Hypermail, Leafnode, Askemos, +Wenlin, and 8th."