27 lines
645 B
Bash
27 lines
645 B
Bash
# Template file for 'cJSON'
|
|
pkgname=cJSON
|
|
version=1.7.15
|
|
revision=1
|
|
build_style=cmake
|
|
short_desc="Ultralightweight JSON parser in ANSI C"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/DaveGamble/cJSON"
|
|
distfiles="https://github.com/DaveGamble/cJSON/archive/v${version}.tar.gz"
|
|
checksum=5308fd4bd90cef7aa060558514de6a1a4a0819974a26e6ed13973c5f624c24b2
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
cJSON-devel_package() {
|
|
depends="cJSON-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/cmake
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|