summaryrefslogtreecommitdiff
path: root/repo/core/gc.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-04 14:43:57 +0000
committerdavidovski <david@davidovski.xyz>2022-01-04 14:43:57 +0000
commit3c3d31f0f9e94a8679e6f9e5f65322ca027a7c54 (patch)
tree931afdeccd00fd40f3965646ea0bd5949397ac7c /repo/core/gc.xibuild
parent1dd45cbc25ccf684f152535edee0364ea5f050ce (diff)
edited util linux and added guile
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
+}