summaryrefslogtreecommitdiff
path: root/repo/core
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-15 11:39:03 +0000
committerdavidovski <david@davidovski.xyz>2022-01-15 11:39:03 +0000
commit18e64bee12506982c50d0c1e245a4d8c7f6058b8 (patch)
treefd41519dce77079e8959e3ce1541e8556b8396c5 /repo/core
parentd40722237ff79e6df29064ee83d0481d07425f9f (diff)
added icecream
Diffstat (limited to 'repo/core')
-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
+}