31 lines
757 B
Bash
31 lines
757 B
Bash
# Template file for 'libfastjson'
|
|
pkgname=libfastjson
|
|
version=0.99.4
|
|
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=03ef63dcc88417e71c19ce4436804159e3397e3a20d3529efef6a43c3bef5c8d
|
|
|
|
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
|
|
}
|
|
}
|