mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 19:50:05 +02:00
57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
SUMMARY="The GNU Readline library"
|
|
DESCRIPTION="The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.
|
|
|
|
The history facilites are also placed into a separate library, the History library, as part of the build process. The History library may be used without Readline in applications which desire its capabilities."
|
|
HOMEPAGE="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html"
|
|
COPYRIGHT="1989-2011 Free Software Foundation, Inc."
|
|
LICENSE="GNU GPL v3"
|
|
SRC_URI="ftp://ftp.gnu.org/gnu/readline/readline-6.2.tar.gz"
|
|
CHECKSUM_MD5="67948acb2ca081f23359d0256e9a271c"
|
|
REVISION="2"
|
|
ARCHITECTURES="x86_gcc2 ?x86"
|
|
|
|
PATCHES="readline-6.2.patch"
|
|
|
|
PROVIDES="
|
|
readline = $portVersion compat >= 6
|
|
lib:libhistory = $portVersion compat >= 6
|
|
lib:libreadline = $portVersion compat >= 6
|
|
"
|
|
REQUIRES="
|
|
haiku >= $haikuVersion
|
|
ncurses
|
|
"
|
|
BUILD_REQUIRES="
|
|
$REQUIRES
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:libtoolize
|
|
cmd:make
|
|
"
|
|
|
|
SOURCE_DIR="$portVersionedName"
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
runConfigure ./configure \
|
|
--with-curses
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
prepareInstalledDevelLibs libhistory libreadline
|
|
rmdir $binDir
|
|
}
|
|
|