mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
17 lines
440 B
Plaintext
17 lines
440 B
Plaintext
# description : C++ library for interacting with JSON
|
|
# homepage : https://github.com/open-source-parsers/jsoncpp
|
|
|
|
name=jsoncpp
|
|
version=1.9.5
|
|
release=1
|
|
source="https://github.com/open-source-parsers/jsoncpp/archive/$version/$name-$version.tar.gz"
|
|
|
|
build() {
|
|
echo ${version} > $name-$version/version
|
|
|
|
venom-meson $name-$version build \
|
|
--default-library shared
|
|
meson compile -C build
|
|
DESTDIR=$PKG meson install --no-rebuild -C build
|
|
}
|