blob: d7ceaf2e835a0594e616610c2142a9fc3d0bfd9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
MAKEDEPS="python make "
DEPS="gcc python popt musl-obstack"
PKG_VER=3.4
SOURCE=https://github.com/distcc/distcc/releases/download/v$PKG_VER/distcc-$PKG_VER.tar.gz
DESC="Distributed compiler for C, C++ and Objective-C"
build () {
./configure --prefix=/usr
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|