blob: 0f7bde33664cc8c0650d78eb57cdcd8b769bc6fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: GNU grep, egrep and fgrep
# URL: http://www.gnu.org/software/grep/grep.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libpcre
name=grep
version=2.7
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-nls \
--mandir=/usr/man
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}
|