diff options
Diffstat (limited to 'repo/devel')
-rw-r--r-- | repo/devel/icecream-sundae.xibuild | 24 | ||||
-rw-r--r-- | repo/devel/icecream.xibuild | 19 |
2 files changed, 43 insertions, 0 deletions
diff --git a/repo/devel/icecream-sundae.xibuild b/repo/devel/icecream-sundae.xibuild new file mode 100644 index 0000000..7915518 --- /dev/null +++ b/repo/devel/icecream-sundae.xibuild @@ -0,0 +1,24 @@ +#!/bin/bash + +MAKEDEPS=(meson ninja) +DEPS=(ncurses glib icecream) + +PKG_VER=1.0.0 +SOURCE=https://github.com/JPEWdev/icecream-sundae/archive/refs/tags/v$PKG_VER.tar.gz + +DESC="A build distribution service based on distcc" + + +build () { + mkdir builddir + cd builddir + + meson .. --buildtype release + ninja + +} + + +package () { + DESTDIR=$PKG_DEST ninja install +} 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 +} |