opt/libedit/Pkgfile

21 lines
523 B
Plaintext
Raw Normal View History

2019-11-16 06:09:45 +01:00
# Description: Command line editor library providing generic line editing, history, and tokenization functions
# URL: https://thrysoee.dk/editline/
2019-11-16 06:09:28 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
name=libedit
2020-01-06 13:34:38 +01:00
version=20191231_3.1
2019-11-16 06:09:28 +01:00
release=1
2019-11-16 06:09:45 +01:00
source=(https://thrysoee.dk/editline/$name-${version/_/-}.tar.gz)
2019-11-16 06:09:28 +01:00
build() {
2019-11-16 06:09:45 +01:00
cd $name-${version/_/-}
2019-11-16 06:09:28 +01:00
2019-11-16 06:09:45 +01:00
./configure --prefix=/usr
2019-11-16 06:09:28 +01:00
make
make DESTDIR=$PKG install
2019-11-16 06:09:45 +01: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 06:09:28 +01:00
}