summaryrefslogtreecommitdiff
path: root/make.morph
blob: 7f8759e23e992820ab4dd3298393bbf7bb8755ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    "name": "make",
    "kind": "chunk",
    "configure-commands": [
        "autoreconf -i",
        "sed -i '/^SUBDIRS/s/ doc / /' Makefile.am",
        "sed -i '/^make_LDADD/s/@LIBINTL@/ /' Makefile.am",
        "sed -i '/^AM_GNU_GETTEXT/d' configure.in",
        "sed -i '/^AC_CONFIG_FILES/s: po/Makefile.in : :' configure.in",
        "./configure --prefix=/usr --disable-nls"
    ],
    "build-commands": [
        "make"
    ],
    "install-commands": [
        "make DESTDIR=\"$DESTDIR\" install"
    ]
}