core/jansson/Pkgfile

17 lines
401 B
Plaintext
Raw Normal View History

2022-01-09 04:42:37 +01:00
# 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() {
2023-08-21 21:49:13 +02:00
cd $name-$version
2022-01-09 04:42:37 +01:00
2023-08-21 21:49:13 +02:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
2022-01-09 04:42:37 +01:00
}