core/readline/Pkgfile

32 lines
986 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Lets users edit command lines as they are typed in
# URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: ncurses
2006-02-23 16:26:10 +01:00
name=readline
2013-11-19 18:43:22 +01:00
version=6.2.5
2011-03-02 12:39:09 +01:00
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \
2011-03-02 12:39:09 +01:00
$name-$version.patch.gz inputrc)
2006-02-23 16:26:10 +01:00
build() {
cd $name-${version:0:3}
2011-03-02 12:39:09 +01:00
gunzip -c $SRC/$name-$version.patch.gz | patch -p0
# Don't use rpath for linking the shared libs
sed -i '117s/-Wl,-rpath,$(libdir)//' support/shobj-conf
2009-05-12 11:34:32 +02:00
./configure --prefix=/usr --mandir=/usr/man
make SHLIB_LIBS=-lncurses
2006-02-23 16:26:10 +01:00
make DESTDIR=$PKG install
2011-03-02 12:39:09 +01:00
install -d $PKG/lib
mv $PKG/usr/lib/lib*.so.* $PKG/lib
ln -sf ../../lib/libhistory.so.${version:0:3} $PKG/usr/lib/libhistory.so
ln -sf ../../lib/libreadline.so.${version:0:3} $PKG/usr/lib/libreadline.so
2006-10-14 10:47:04 +02:00
install -D -m 644 $SRC/inputrc $PKG/etc/inputrc
2009-05-13 21:20:35 +02:00
rm -r $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
}