blob: 728fc1d223542febed75c7e221b51fb984640219 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
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 
}
 |