robin-hood-hashing: initial import

This commit is contained in:
Danny Rawlins 2022-02-20 22:24:32 +11:00
parent ae0859303c
commit 18832a23b1
3 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/robin_hood.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/robin_hood/
-rw-r--r-- root/root usr/lib/cmake/robin_hood/robin_hood-targets.cmake
-rw-r--r-- root/root usr/lib/cmake/robin_hood/robin_hoodConfig.cmake

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/SKLtKy8qlw+VKq28qUo+7uX+IiLczZW+eN6fcTcXpmhX5PdV4me64or8TktDru2D9gqzscZJHQWCMGkjUrSKg8=
SHA256 (Pkgfile) = 6bbfc7d50becd938f07c2ffbde2302f064656588d1a143f3b3ffff206f9cae9f
SHA256 (.footprint) = d09b509c88b0d5a8cdb3e3386fb26de2eeacd18c185e0268c24e0e382d757f0f
SHA256 (robin-hood-hashing-3.11.5.tar.gz) = 3693e44dda569e9a8b87ce8263f7477b23af448a3c3600c8ab9004fe79c20ad0

View File

@ -0,0 +1,19 @@
# Description: Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20
# URL: https://github.com/martinus/robin-hood-hashing
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: cmake
name=robin-hood-hashing
version=3.11.5
release=1
source=(https://github.com/martinus/robin-hood-hashing/archive/$version/$name-$version.tar.gz)
build() {
cmake -S $name-$version -B build \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D RH_STANDALONE_PROJECT=OFF \
cmake --build build
DESTDIR=$PKG cmake --install build
}