Files
haikuports/sys-libs/readline/readline-6.0.bep

25 lines
487 B
Plaintext

DESCRIPTION="readline"
HOMEPAGE="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html"
SRC_URI="ftp://ftp.cwru.edu/pub/bash/readline-6.0.tar.gz"
CHECKSUM_MD5="b7f65a48add447693be6e86f04a63019"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
cd readline-6.0
libtoolize --force --copy --install
aclocal
autoconf
./configure --prefix=/boot/common
make
}
INSTALL {
cd readline-6.0
if [ -n "${DESTDIR}" ];then
make install DESTDIR="${DESTDIR}"
else
make install
fi
}