forked from Plemya-x/alr-repo
nlohmann-json
This commit is contained in:
31
nlohmann-json/lure.sh
Normal file
31
nlohmann-json/lure.sh
Normal file
@ -0,0 +1,31 @@
|
||||
name='nlohmann-json'
|
||||
version='3.7.3'
|
||||
release='1'
|
||||
desc='Header-only JSON library for Modern C++'
|
||||
homepage='https://github.com/nlohmann/json'
|
||||
maintainer="Евгений Храмов <xpamych@yandex.ru>"
|
||||
architectures=('amd64')
|
||||
licenses='MIT'
|
||||
provides=('nlohmann-json')
|
||||
conflicts=('nlohmann-json')
|
||||
|
||||
build_deps_rosa=('cmake' 'git')
|
||||
|
||||
sources=("git+https://github.com/nlohmann/json.git")
|
||||
checksums=('SKIP')
|
||||
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${name}-${version}"
|
||||
mkdir build
|
||||
cd ./build
|
||||
cmake ../json -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTING=OFF
|
||||
make
|
||||
}
|
||||
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${name}-${version}/build"
|
||||
make "DESTDIR=${pkddir}" install
|
||||
install -Dm644 "-t${pkddir}/usr/share/licenses/${name}" ../json/LICENSE.MIT
|
||||
}
|
Reference in New Issue
Block a user