diff options
Diffstat (limited to 'repo/devel/patch.xibuild')
-rw-r--r-- | repo/devel/patch.xibuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/devel/patch.xibuild b/repo/devel/patch.xibuild new file mode 100644 index 0000000..728fc1d --- /dev/null +++ b/repo/devel/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 +} |