CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
sed: updated to 4.4
[crossrootfs.git] / sed / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: Sed - streams editor
2# URL: http://www.gnu.org/software/sed//sed.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
b9d2981c 5# Depends on:
6dca1d21
JB
6
7name=sed
1d7224f1
VM
8version=4.4
9release=1
10source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
6dca1d21
JB
11
12build() {
b9d2981c
JB
13 cd $name-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
b9d2981c
JB
18 --exec-prefix=/ \
19 --disable-nls
20
21 make
22 make DESTDIR=$PKG install
432fdeca 23 rm -r $PKG/usr/share/info
6dca1d21 24}