summaryrefslogtreecommitdiff
path: root/repo/gawk/gawk.xibuild
blob: 1b60f3b7ad581384772816fcc8a6d7a1d547fbd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

MAKEDEPS="make sh musl mpfr"

PKG_VER=5.2.1
SOURCE=https://ftp.gnu.org/gnu/gawk/gawk-$PKG_VER.tar.xz
DESC="GNU's awk"

build () {
    ./configure --prefix=/usr
    make
}

package () {
    make DESTDIR=$PKG_DEST install 

}