31 lines
781 B
Bash
31 lines
781 B
Bash
# Template file for 'nuspell'
|
|
pkgname=nuspell
|
|
version=5.0.0
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DBUILD_SHARED_LIBS=ON"
|
|
makedepends="icu-devel"
|
|
checkdepends="catch2"
|
|
short_desc="C++ spell checking library"
|
|
maintainer="John <me@johnnynator.dev>"
|
|
license="LGPL-3.0-or-later"
|
|
homepage="https://nuspell.github.io/"
|
|
distfiles="https://github.com/nuspell/nuspell/archive/v${version}.tar.gz"
|
|
checksum=855d4771d225dcce1e48d098be6a2d69629c635b79b53f9e095a35adc68f0ea1
|
|
|
|
libnuspell_package() {
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
libnuspell-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision} ${makedepends}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/cmake
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|