#!/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
}