void-packages/srcpkgs/hunspell/template
2016-12-22 06:02:51 +00:00

36 lines
933 B
Bash

# Template file for 'hunspell'
pkgname=hunspell
version=1.6.0
revision=1
build_style=gnu-configure
configure_args="--with-ui"
hostmakedepends="pkg-config automake libtool bison"
makedepends="ncurses-devel"
short_desc="An Improved spellchecker"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="https://hunspell.github.io/"
license="GPL-2, LGPL-2.1, MPL-1.1"
distfiles="https://github.com/hunspell/hunspell/archive/v${version}.tar.gz"
checksum=512e7d2ee69dad0b35ca011076405e56e0f10963a02d4859dbcc4faf53ca68e2
pre_configure() {
autoreconf -fi
}
libhunspell_package() {
short_desc+=" - runtime library"
pkg_install() {
vmove usr/lib/*.so.*
}
}
hunspell-devel_package() {
depends="libstdc++-devel ncurses-devel lib${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
}
}