22 lines
589 B
Plaintext
22 lines
589 B
Plaintext
# Description: Extremely fast non-cryptographic hash algorithm
|
|
# URL: https://github.com/Cyan4973/xxHash
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on:
|
|
|
|
name=xxhash
|
|
version=0.8.3
|
|
release=1
|
|
source=(https://github.com/Cyan4973/xxHash/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
ls
|
|
cmake -S xxHash-$version/cmake_unofficial -B build -G Ninja \
|
|
-D CMAKE_INSTALL_PREFIX=/usr \
|
|
-D CMAKE_INSTALL_LIBDIR=lib \
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
|
|
-Wno-dev
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|