1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#!/bin/sh MAKEDEPS="grep make " 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 }