summaryrefslogtreecommitdiffstats
path: root/sed/Pkgfile
blob: 8c42ea0663f6bbad35e5348a96cc6626b9e72702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
description="Sed - streams editor."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.gnu.org/software/sed//sed.html"
depends=(acl)

name=sed
version=4.2.1
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
build () 
{ 
	cd $name-$version;
	./configure \
		--prefix=$prefix \
		--mandir=$mandir \
		--exec-prefix=/ \
		$(use_enable nls);
	make;
	make DESTDIR=$PKG install;
}