CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Fixed major update for Arch-Maintainer's email (all ports)
[crossrootfs.git] / grep / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: GNU grep, egrep and fgrep
2# URL: http://www.gnu.org/software/grep/grep.html
3# Maintainer: CRUX System Team, core-ports at crux dot nu
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5# Depends on: libpcre
6
7name=grep
8version=2.5.4
9release=1
10source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
11
12build() {
13 cd $name-$version
14 ./configure --build=$CHOST \
15 --host=$CTARGET \
16 --prefix=/usr \
6dca1d21
JB
17 --mandir=/usr/man \
18 --disable-nls
19 make
20 make DESTDIR=$PKG install
21 rm -r $PKG/usr/share
22}