31 lines
757 B
Bash
31 lines
757 B
Bash
# Template file for 'libfastjson'
|
|
pkgname=libfastjson
|
|
version=0.99.5
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool"
|
|
short_desc="A JSON implementation in C (json-c fork)"
|
|
maintainer="Michael Gehring <mg@ebfe.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/rsyslog/libfastjson"
|
|
distfiles="https://github.com/rsyslog/libfastjson/archive/v${version}.tar.gz"
|
|
checksum=74401bc45a40a03f1bc6064513503f47dbe3db4fc735627ce122e512be9760f0
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
libfastjson-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|