d6e1b8b391
[ci skip] This includes 3 patches from Gentoo. One of them is a fix for CVE-2020-12762.
35 lines
939 B
Bash
35 lines
939 B
Bash
# Template file for 'json-c'
|
|
pkgname=json-c
|
|
version=0.14
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DENABLE_THREADING=ON -DBUILD_STATIC_LIBS=ON
|
|
-DENABLE_RDRAND=$(vopt_if rdrand ON OFF)"
|
|
hostmakedepends="doxygen"
|
|
short_desc="JSON implementation in C"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="https://json-c.github.io/json-c"
|
|
distfiles="https://s3.amazonaws.com/json-c_releases/releases/${pkgname}-${version}.tar.gz"
|
|
checksum=b377de08c9b23ca3b37d9a9828107dff1de5ce208ff4ebb35005a794f30c6870
|
|
|
|
CFLAGS="-Wno-error"
|
|
|
|
build_options="rdrand"
|
|
desc_option_rdrand="Enable RDRAND Hardware RNG Hash Seed generation on x86_x64 platforms"
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
json-c-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/cmake
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|