core/readline/Pkgfile

19 lines
515 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
2006-02-23 16:26:10 +01:00
name=readline
2010-01-03 16:05:28 +01:00
version=6.1
2010-01-14 16:32:51 +01:00
release=2
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \
2010-01-03 16:05:28 +01:00
inputrc)
2006-02-23 16:26:10 +01:00
build() {
2010-01-14 16:32:51 +01:00
cd $name-$version
2009-05-12 11:34:32 +02:00
./configure --prefix=/usr --mandir=/usr/man
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
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
}