diff options
| author | davidovski <david@davidovski.xyz> | 2022-01-15 11:39:03 +0000 |
|---|---|---|
| committer | davidovski <david@davidovski.xyz> | 2022-01-15 11:39:03 +0000 |
| commit | 18e64bee12506982c50d0c1e245a4d8c7f6058b8 (patch) | |
| tree | fd41519dce77079e8959e3ce1541e8556b8396c5 | |
| parent | d40722237ff79e6df29064ee83d0481d07425f9f (diff) | |
added icecream
| -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 +} |
