17 lines
387 B
Plaintext
17 lines
387 B
Plaintext
# Description: A fast JSON library for C
|
|
# URL: https://github.com/rsyslog/libfastjson
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
|
|
name=libfastjson
|
|
version=1.2304.0
|
|
release=1
|
|
source=(https://github.com/rsyslog/$name/archive/v${version}/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|