summaryrefslogtreecommitdiff
path: root/repo/core/make.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/core/make.xibuild')
-rw-r--r--repo/core/make.xibuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/core/make.xibuild b/repo/core/make.xibuild
new file mode 100644
index 0000000..ca00d16
--- /dev/null
+++ b/repo/core/make.xibuild
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+DEPS=(glibc)
+
+SOURCE=https://ftp.gnu.org/gnu/make/make-4.3.tar.lz
+DESC="GNU make utility"
+
+build () {
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=$PKG_DEST install
+}