blob: 2fa987511cd756b1338a8a9a831a35294f809dd1 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | #!/bin/bash
MAKEDEPS=(python make )
DEPS=(gcc python libcap-ng lzo libarchive)
SOURCE=https://github.com/icecc/icecream/releases/download/1.3.1/icecc-1.3.1.tar.xz
DESC="A build distribution service based on distcc"
build () {
    ./configure --prefix=/usr
    make
}
package () {
    make DESTDIR=$PKG_DEST install
}
 |