summaryrefslogtreecommitdiff
path: root/repo/devel/patch.xibuild
blob: 015aeeb6ac96a6baa760d6cb2c43b01ae5a75657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 
}