44 lines
1.1 KiB
Text
44 lines
1.1 KiB
Text
# Template build file for 'json-c'.
|
|
pkgname=json-c
|
|
version=0.11
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="ac_cv_func_malloc_0_nonnull=yes ac_cv_func_realloc_0_nonnull=yes
|
|
ac_cv_func_memcmp_working=yes"
|
|
short_desc="A JSON implementation in C"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="MIT"
|
|
homepage="http://oss.metaparadigm.com/$pkgname"
|
|
distfiles="https://s3.amazonaws.com/json-c_releases/releases/$pkgname-$version.tar.gz"
|
|
checksum=28dfc65145dc0d4df1dfe7701ac173c4e5f9347176c8983edbfac9149494448c
|
|
long_desc="
|
|
JSON-C implements a reference counting object model that allows you to easily
|
|
construct JSON objects in C, output them as JSON formatted strings and parse
|
|
JSON formatted strings back into the C representation of JSON objects."
|
|
|
|
disable_parallel_build=yes
|
|
hostmakedepends="automake libtool"
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
vinstall COPYING 644 usr/share/licenses/${pkgname}
|
|
}
|
|
|
|
json-c-devel_package() {
|
|
depends="json-c>=${version}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.a"
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|
|
|
|
json-c_package() {
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|