24 lines
733 B
Plaintext
24 lines
733 B
Plaintext
|
#!/bin/sh
|
||
|
name="libedit"
|
||
|
short_desc="Command line editor library"
|
||
|
desc="libedit provides command line editing functionality. Additionally, emacs and vi key
|
||
|
bindings are supported."
|
||
|
category="devel"
|
||
|
version="20230828-3.1"
|
||
|
maintainer="ffqq@danwin1210.de"
|
||
|
www="https://thrysoee.dk/editline/"
|
||
|
master_site="https://thrysoee.dk/editline"
|
||
|
source_name="$name-$version.tar.gz"
|
||
|
license_logic="single" # accepted values: single, and, or
|
||
|
licenses=("BSD-2-CLAUSE")
|
||
|
|
||
|
build_dependencies=("lang/gcc" "devel/gmake")
|
||
|
run_dependencies=("system/glibc")
|
||
|
|
||
|
build_process() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr
|
||
|
make -j$(nproc)
|
||
|
make DESTDIR="$TAMANDUA_STAGE_DIR" install
|
||
|
rm -v "$TAMANDUA_STAGE_DIR/usr/share/man/man3/history.3"
|
||
|
}
|