#!/bin/bash

DEPS=(glibc pcre)

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

build () {
    ./configure --prefix=/usr --bindir=/bin
    make
    make check
    make DESTDIR=$PKG_DEST install 
}