void-packages/srcpkgs/libedit/template

34 lines
976 B
Bash

# Template file for 'libedit'
pkgname=libedit
version=20240517.3.1
revision=1
build_style=gnu-configure
# only check if man support nroff format
# all of our man supports nroff
configure_args="ac_cv_path_NROFF=/bin/true"
makedepends="ncurses-devel"
short_desc="Port of the NetBSD Command Line Editor Library"
maintainer="Orphaned <orphan@voidlinux.org>"
license="BSD-3-Clause"
homepage="https://www.thrysoee.dk/editline/"
distfiles="https://www.thrysoee.dk/editline/libedit-${version%%.*}-${version#*.}.tar.gz"
checksum=3a489097bb4115495f3bd85ae782852b7097c556d9500088d74b6fa38dbd12ff
post_install() {
vlicense COPYING
# history.3 conflicts with readline-devel
rm ${DESTDIR}/usr/share/man/man3/history.3
}
libedit-devel_package() {
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/share/man/man3
}
}