summaryrefslogtreecommitdiff
path: root/repo/core/distcc.xibuild
blob: 8d4039b129458d89a08d4206e1ee433f3b8ae71d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

DEPS=(gcc python)

SOURCE=https://github.com/distcc/distcc/releases/download/v3.4/distcc-3.4.tar.gz

DESC="Distributed compiler for C, C++ and Objective-C"


build () {
    ./configure --prefix=/usr
    make
}


package () {
    make DESTDIR=$PKG_DEST install
}