32 lines
910 B
Bash
32 lines
910 B
Bash
# Template file for 'editline'
|
|
pkgname=editline
|
|
version=1.17.1
|
|
revision=2
|
|
build_style=gnu-configure
|
|
short_desc="Minimal readline() replacement"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="Spencer-94"
|
|
homepage="https://troglobit.com/projects/editline/"
|
|
changelog="https://raw.githubusercontent.com/troglobit/editline/master/ChangeLog.md"
|
|
distfiles="https://github.com/troglobit/editline/releases/download/${version}/editline-${version}.tar.xz"
|
|
checksum=df223b3333a545fddbc67b49ded3d242c66fadf7a04beb3ada20957fcd1ffc0e
|
|
|
|
post_install() {
|
|
rm -rf ${DESTDIR}/usr/share/doc
|
|
|
|
# avoid conflict with libedit
|
|
mv ${DESTDIR}/usr/share/man/man3/{,lib}editline.3
|
|
}
|
|
|
|
editline-devel_package() {
|
|
depends="editline-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/man/man3
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|