summaryrefslogtreecommitdiff
path: root/repo/devel/icecream.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/devel/icecream.xibuild')
-rw-r--r--repo/devel/icecream.xibuild19
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/devel/icecream.xibuild b/repo/devel/icecream.xibuild
new file mode 100644
index 0000000..2fa9875
--- /dev/null
+++ b/repo/devel/icecream.xibuild
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+MAKEDEPS=(python make )
+DEPS=(gcc python libcap-ng lzo libarchive)
+
+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
+}