summaryrefslogtreecommitdiff
path: root/repo/core/icecream.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/core/icecream.xibuild')
-rw-r--r--repo/core/icecream.xibuild18
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
+}