milis/talimatname/temel/grep/talimat

22 lines
409 B
Plaintext
Raw Normal View History

2017-10-27 21:56:50 +02:00
# Tanım: Searches input(s) file(s) for lines containing a match to a specified pattern.
2016-02-24 01:27:23 +01:00
# URL: http://www.gnu.org/software/grep/
2017-10-27 21:56:50 +02:00
# Paketçi: milisarge
# Gerekler:
2016-02-24 01:27:23 +01:00
name=grep
version=2.23
release=1
source=(http://ftp.gnu.org/gnu/grep/grep-$version.tar.xz)
2017-10-27 23:59:41 +02:00
derle()
2016-02-24 01:27:23 +01:00
{
cd grep-$version
./configure --prefix=/usr --bindir=/bin
make
make check || true
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info/dir
}