diff options
author | Denis Davydov <davydden@gmail.com> | 2016-03-22 19:41:31 +0100 |
---|---|---|
committer | Denis Davydov <davydden@gmail.com> | 2016-03-22 19:41:31 +0100 |
commit | 5f68e14d3bd90e4a71f6366a328dcc97fc6e8a92 (patch) | |
tree | ed477d8e13a92eaa0c20f506ca839561c3e0ac00 | |
parent | e32eb7e990119288e0bbffe1786b5cd20547e0ad (diff) | |
download | spack-5f68e14d3bd90e4a71f6366a328dcc97fc6e8a92.tar.gz spack-5f68e14d3bd90e4a71f6366a328dcc97fc6e8a92.tar.bz2 spack-5f68e14d3bd90e4a71f6366a328dcc97fc6e8a92.tar.xz spack-5f68e14d3bd90e4a71f6366a328dcc97fc6e8a92.zip |
add gettext package
-rw-r--r-- | var/spack/repos/builtin/packages/gettext/package.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/gettext/package.py b/var/spack/repos/builtin/packages/gettext/package.py new file mode 100644 index 0000000000..05712d7392 --- /dev/null +++ b/var/spack/repos/builtin/packages/gettext/package.py @@ -0,0 +1,30 @@ +from spack import * + +class Gettext(Package): + """GNU internationalization (i18n) and localization (l10n) library.""" + homepage = "https://www.gnu.org/software/gettext/" + url = "http://ftpmirror.gnu.org/gettext/gettext-0.19.7.tar.xz" + + version('0.19.7', 'f81e50556da41b44c1d59ac93474dca5') + + def install(self, spec, prefix): + options = ['--disable-dependency-tracking', + '--disable-silent-rules', + '--disable-debug', + '--prefix=%s' % prefix, + '--with-included-gettext', + '--with-included-glib', + '--with-included-libcroco', + '--with-included-libunistring', + '--with-emacs', + '--with-lispdir=%s/emacs/site-lisp/gettext' % prefix.share, + '--disable-java', + '--disable-csharp', + '--without-git', # Don't use VCS systems to create these archives + '--without-cvs', + '--without-xz'] + + configure(*options) + + make() + make("install") |