contrib/yajl/Pkgfile

17 lines
401 B
Plaintext
Raw Normal View History

2020-06-06 23:43:11 +02:00
# Description: Yet Another JSON Library
# URL: http://lloyd.github.com/yajl/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: cmake
name=yajl
version=2.1.0
release=1
source=(https://github.com/lloyd/$name/archive/$version/$name-$version.tar.gz)
build() {
2020-06-07 00:31:25 +02:00
cmake -S$name-$version -Bbuild \
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
2020-07-08 15:01:36 +02:00
DESTDIR=$PKG cmake --install build
2020-06-06 23:43:11 +02:00
}