36 lines
933 B
Bash
36 lines
933 B
Bash
# Template file for 'hunspell'
|
|
pkgname=hunspell
|
|
version=1.6.1
|
|
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=30f593733c50b794016bb03d31fd2a2071e4610c6fa4708e33edad2335102c49
|
|
|
|
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
|
|
}
|
|
}
|