blob: 7cf4c6cf191cd66caf97f6b004eaad7de402f9d4 (
plain)
1 # Description: Command line editor library providing generic line editing, history, and tokenization functions
2 # URL: https://thrysoee.dk/editline/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4
5 name=libedit
6 version=20221030_3.1
7 release=1
8 source=(https://thrysoee.dk/editline/$name-${version/_/-}.tar.gz)
9
10 build() {
11 cd $name-${version/_/-}
12
13 ./configure --prefix=/usr
14
15 make
16 make DESTDIR=$PKG install
17
18 rm $PKG/usr/share/man/man3/history.3 # conflicts with readline
19 ln -s editline.3 $PKG/usr/share/man/man3/el.3
20 }
|