From 7bdf906eea9280916671a80a6f015c39f84b3a05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=A5=D1=80?= =?UTF-8?q?=D0=B0=D0=BC=D0=BE=D0=B2?= Date: Sun, 26 May 2024 23:51:15 +0300 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BD=D0=B5=20=D1=80=D0=B0=D0=B1=D0=BE=D1=87=D0=B5?= =?UTF-8?q?=D0=B3=D0=BE=20=D0=BF=D0=B0=D0=BA=D0=B5=D1=82=D0=B0=20=D0=B2=20?= =?UTF-8?q?dev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev_nlohmann-json/alr.sh | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 dev_nlohmann-json/alr.sh diff --git a/dev_nlohmann-json/alr.sh b/dev_nlohmann-json/alr.sh deleted file mode 100755 index 01c12d1..0000000 --- a/dev_nlohmann-json/alr.sh +++ /dev/null @@ -1,34 +0,0 @@ -name='dev_nlohmann-json' -version='3.11.3' -release='1' -desc='Header-only JSON library for Modern C++' -homepage='https://github.com/nlohmann/json' -maintainer="Евгений Храмов " -architectures=('amd64') -licenses='MIT' -provides=('nlohmann-json') -conflicts=('nlohmann-json') - -build_deps_rosa=('cmake' 'git') -sources=("git+https://github.com/nlohmann/json.git#tag=v${version}") -checksums=('SKIP') - -build() { - cd "${srcdir}" - mkdir build - cd ./build - cmake ../json -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTING=OFF - make -j$(nproc) -} - -check() { - cd "${srcdir}/build" - cmake ../json -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTING=ON - make -j$(nproc) - ctest --output-on-failure -} - -package() { - cd "${srcdir}/build" - make "DESTDIR=${pkgdir}" install -}