core/ed/Pkgfile

23 lines
534 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.12
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.lz)
build() {
bsdtar -xf $SRC/$name-$version.tar.lz
cd $name-$version
./configure --prefix=/usr \
--exec-prefix=/ \
--mandir=/usr/man \
CFLAGS="$CFLAGS"
make
make DESTDIR=$PKG install-bin install-man
}