1
0
forked from ports/opt

21 lines
523 B
Plaintext
Raw Normal View History

2019-11-16 16:09:45 +11:00
# Description: Command line editor library providing generic line editing, history, and tokenization functions
# URL: https://thrysoee.dk/editline/
2019-11-16 16:09:28 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
name=libedit
2021-09-18 13:59:33 +02:00
version=20210910_3.1
2019-11-16 16:09:28 +11:00
release=1
2019-11-16 16:09:45 +11:00
source=(https://thrysoee.dk/editline/$name-${version/_/-}.tar.gz)
2019-11-16 16:09:28 +11:00
build() {
2019-11-16 16:09:45 +11:00
cd $name-${version/_/-}
2019-11-16 16:09:28 +11:00
2019-11-16 16:09:45 +11:00
./configure --prefix=/usr
2019-11-16 16:09:28 +11:00
make
make DESTDIR=$PKG install
2019-11-16 16:09:45 +11:00
rm $PKG/usr/share/man/man3/history.3 # conflicts with readline
ln -s editline.3 $PKG/usr/share/man/man3/el.3
2019-11-16 16:09:28 +11:00
}