opt/libedit/Pkgfile
2021-04-24 14:17:40 +10:00

21 lines
523 B
Plaintext

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