summaryrefslogtreecommitdiffstats
path: root/grep/Pkgfile
blob: 1a9c08f4a0f86e090f42d5d7fab7efd9cefbdcb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Description: Programme pour rechercher à travers des fichiers.
# URL: http://www.gnu.org/software/grep/ 
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch

name=grep
version=2.10
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)

build() {
	cd $name-$version
	./configure --prefix=/usr \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--bindir=/bin \
		--without-included-regex
	make
	make DESTDIR=$PKG install
	if [ -f $PKG/usr/share/info/dir ]; then
		rm $PKG/usr/share/info/dir
	fi
}