core/grep/Pkgfile

20 lines
425 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
2016-12-14 20:23:47 +01:00
version=2.27
2014-02-19 17:00:32 +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
2013-10-27 08:50:47 +01:00
2016-04-23 14:07:13 +02:00
./configure --prefix=/usr --disable-nls
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2014-01-05 13:28:01 +01:00
2015-07-25 23:31:52 +02:00
rm -r $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
}