summaryrefslogtreecommitdiff
path: root/gzip.morph
blob: 8ab3f311edc4201918eb7c5172c457ea4ad63298 (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 install",
        "mkdir -p \"$DESTDIR/bin\"",
        "mv -v \"$DESTDIR/usr/bin/gzip\" \"$DESTDIR/bin/gzip\"",
        "mv -v \"$DESTDIR/usr/bin/gunzip\" \"$DESTDIR/bin/gunzip\""
    ]
}