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