diff options
Diffstat (limited to 'repo')
-rw-r--r-- | repo/core/icecream.xibuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/core/icecream.xibuild b/repo/core/icecream.xibuild new file mode 100644 index 0000000..1f67f5b --- /dev/null +++ b/repo/core/icecream.xibuild @@ -0,0 +1,18 @@ +#!/bin/bash + +DEPS=(gcc python) + +SOURCE=https://github.com/icecc/icecream/archive/1.3.1.tar.gz + +DESC="A build distribution service based on distcc" + + +build () { + ./configure --prefix=/usr + make +} + + +package () { + make DESTDIR=$PKG_DEST install +} |