summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/gettext/package.py
blob: 05712d7392cdb94b56e80b685ec5e14e12398b10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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")