core/ed/Pkgfile

22 lines
498 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: An 8-bit clean, POSIX-compliant line editor
# URL: http://www.gnu.org/software/ed/ed.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=ed
2016-02-15 20:04:00 +01:00
version=1.13
release=1
2015-04-07 12:45:23 +02:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.lz)
2006-02-23 16:26:10 +01:00
build() {
2014-02-27 11:22:54 +01:00
bsdtar -xf $SRC/$name-$version.tar.lz
2006-02-23 16:26:10 +01:00
cd $name-$version
2006-11-12 11:13:42 +01:00
2008-08-24 11:30:26 +02:00
./configure --prefix=/usr \
--exec-prefix=/ \
CFLAGS="$CFLAGS"
2006-02-23 16:26:10 +01:00
make
2015-07-10 17:50:00 +02:00
make DESTDIR=$PKG install-bin install-man
2006-02-23 16:26:10 +01:00
}