summaryrefslogtreecommitdiff
path: root/repo/system/gc.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/gc.xibuild')
-rw-r--r--repo/system/gc.xibuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/system/gc.xibuild b/repo/system/gc.xibuild
new file mode 100644
index 0000000..d06a08d
--- /dev/null
+++ b/repo/system/gc.xibuild
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+DEPS=(gcc-libs)
+
+SOURCE=https://github.com/ivmai/bdwgc/releases/download/v8.0.6/gc-8.0.6.tar.gz
+DESC="A garbage collector for C and C++"
+
+build () {
+ ./configure --prefix=/usr --disable-static
+ make
+ make DESTDIR=$PKG_DEST install
+}