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

DEPS=(glibc 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 
}