summaryrefslogtreecommitdiff
path: root/gzip.morph
blob: f56482d7f856dd556a18cf272196ed158bcf3167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    "name": "gzip",
    "kind": "chunk",
    "configure-commands": [
        "rm .git*",
        "bash bootstrap --skip-po",
        "./configure --prefix=/usr --disable-nls"
    ],
    "build-commands": [
        "make"
    ],
    "install-commands": [
        "make DESTDIR=\"$DESTDIR\" install",
        "mkdir -p \"$DESTDIR/bin\"",
        "mv -v \"$DESTDIR/usr/bin/gzip\" \"$DESTDIR/bin/gzip\"",
        "mv -v \"$DESTDIR/usr/bin/gunzip\" \"$DESTDIR/bin/gunzip\""
    ]
}