mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
testing/libmanticore-columnar: new aport
Column-oriented storage library
This commit is contained in:
parent
7fe0b8899d
commit
ed5276914d
11
testing/libmanticore-columnar/0001-include-cstdint.patch
Normal file
11
testing/libmanticore-columnar/0001-include-cstdint.patch
Normal file
@ -0,0 +1,11 @@
|
||||
diff -ruN a/common/schema.h b/common/schema.h
|
||||
--- a/common/schema.h 2024-04-19 10:17:30.432373942 +0200
|
||||
+++ b/common/schema.h 2024-04-19 10:18:40.222357156 +0200
|
||||
@@ -20,6 +20,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
+#include <cstdint> // for std::uint32_t and std::uint64_t
|
||||
#include <string>
|
||||
|
||||
namespace common
|
38
testing/libmanticore-columnar/APKBUILD
Normal file
38
testing/libmanticore-columnar/APKBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
# Maintainer: Noel Kuntze <noel.kuntze@contauro.com>
|
||||
pkgname=libmanticore-columnar
|
||||
pkgver=2.2.4
|
||||
pkgrel=0
|
||||
pkgdesc="Column-oriented storage library"
|
||||
url="https://manticoresearch.com/"
|
||||
arch="x86_64 aarch64"
|
||||
license="Apache-2.0"
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/manticoresoftware/columnar/archive/refs/tags/$pkgver.tar.gz
|
||||
0001-include-cstdint.patch
|
||||
"
|
||||
makedepends="
|
||||
cmake
|
||||
samurai
|
||||
"
|
||||
builddir="$srcdir/columnar-$pkgver/"
|
||||
|
||||
build() {
|
||||
cmake -B build -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
||||
-DDISTR_BUILD=default \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_INSTALL_LIBDIR=lib
|
||||
cmake --build build
|
||||
}
|
||||
|
||||
check() {
|
||||
ctest --test-dir build --output-on-failure -j1
|
||||
}
|
||||
|
||||
package() {
|
||||
DESTDIR="$pkgdir" cmake --install build
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
f374799a61f86b6532c94d6ed647a7f435df3b1df7076b34915eae6d22a3e8271649f2e413640556dc6b72a55786a1ce89fd51aa123b0939034b5a8207b786f1 libmanticore-columnar-2.2.4.tar.gz
|
||||
ed65bd8195861ce02f21e4ef2d143aae50bc7c135504859713e33a00ec8cd4a54727c36343578ca347c7393c9a3283b803f978c70d4b265ca5b5023e1af0608a 0001-include-cstdint.patch
|
||||
"
|
Loading…
Reference in New Issue
Block a user