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