20 lines
463 B
Plaintext
20 lines
463 B
Plaintext
# 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
|
|
|
|
name=ed
|
|
version=1.14.2
|
|
release=1
|
|
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.lz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--exec-prefix=/ \
|
|
CFLAGS="$CFLAGS"
|
|
|
|
make
|
|
make DESTDIR=$PKG install-bin install-man
|
|
}
|