blob: 11116e99540cd7ae97d763bc2647e8515fe8ad14 (
plain)
1 # Description: A fast JSON library for C
2 # URL: https://github.com/rsyslog/libfastjson
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4
5 name=libfastjson
6 version=0.99.8
7 release=1
8 source=(https://github.com/rsyslog/$name/archive/v${version}/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 NOCONFIGURE=1 ./autogen.sh
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|