core/grep/Pkgfile

20 lines
471 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# 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
2008-09-22 17:00:30 +02:00
# Depends on: libpcre
2006-02-23 16:26:10 +01:00
name=grep
2011-05-14 15:03:01 +02:00
version=2.8
2009-02-12 13:47:59 +01:00
release=1
2010-03-25 10:28:34 +01:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
./configure --prefix=/usr \
2008-09-22 17:00:30 +02:00
--disable-nls \
--mandir=/usr/man
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2009-02-12 13:47:59 +01:00
rm -r $PKG/usr/share
2006-02-23 16:26:10 +01:00
}