#!/bin/bashDEPS=(gcc python libcap-ng)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
}