summaryrefslogtreecommitdiff
path: root/repo/util/grep.xibuild
blob: 52cd6f7274898904970d90de5a032005a136fd1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

MAKEDEPS="grep make "
DEPS="musl pcre"

PKG_VER=3.7
SOURCE=https://ftp.gnu.org/gnu/grep/grep-$PKG_VER.tar.xz
DESC="A string search utility"

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

check () {
    make check
}

package () {
    make DESTDIR=$PKG_DEST install 
    ln -s grep $PKG_DEST/bin/ggrep
}