summaryrefslogtreecommitdiff
path: root/gzip.morph
blob: 74429a118e3d8b2a96ed903544763778ed271ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "name": "gzip",
    "kind": "chunk",
    "configure-commands": [
        "bash bootstrap",
        "./configure --prefix=/usr"
    ],
    "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\""
    ]
}