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