mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 13:08:53 +02:00
25 lines
487 B
Plaintext
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
|
|
}
|