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