34 lines
976 B
Bash
34 lines
976 B
Bash
# Template file for 'libedit'
|
|
pkgname=libedit
|
|
version=20230828.3.1
|
|
revision=2
|
|
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=4ee8182b6e569290e7d1f44f0f78dac8716b35f656b76528f699c69c98814dad
|
|
|
|
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
|
|
}
|
|
}
|