17 lines
397 B
Plaintext
17 lines
397 B
Plaintext
# Description: C library for encoding, decoding and manipulating JSON data.
|
|
# URL: https://www.digip.org/jansson/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
name=jansson
|
|
version=2.14
|
|
release=1
|
|
source=(https://github.com/akheron/jansson/releases/download/v$version/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|