robin-hood-hashing-32: initial commit, version 3.11.5

This commit is contained in:
Tim Biermann 2022-12-22 12:33:32 +00:00
parent f6d4087961
commit e5dd53f678
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 32 additions and 0 deletions

View File

View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib32/
drwxr-xr-x root/root usr/lib32/cmake/
drwxr-xr-x root/root usr/lib32/cmake/robin_hood/
-rw-r--r-- root/root usr/lib32/cmake/robin_hood/robin_hood-targets.cmake
-rw-r--r-- root/root usr/lib32/cmake/robin_hood/robin_hoodConfig.cmake

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/compat-32.pub
RWSwxGo/zH7eXeNNy23c5veGKmZIn5XgN+XWSwYb+zaEBoKryvislip/jRAqEzd88OotW8g3z982eX+zdL8Lvrp9bUsT6hschgU=
SHA256 (Pkgfile) = 6a8fabb8a672ddf0d6607b9f8762043ef574e42235fc286425ba2ec88ef53400
SHA256 (.footprint) = bd7d7d74bb56acd8221f7e6058856c5cb1c07e017c60a5f808dc2423451f0305
SHA256 (robin-hood-hashing-3.11.5.tar.gz) = 3693e44dda569e9a8b87ce8263f7477b23af448a3c3600c8ab9004fe79c20ad0

View File

@ -0,0 +1,21 @@
# 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: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: robin-hood-hashing
name=robin-hood-hashing-32
version=3.11.5
release=1
source=(https://github.com/martinus/robin-hood-hashing/archive/$version/robin-hood-hashing-$version.tar.gz)
build() {
cmake -S robin-hood-hashing-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib32 \
-D RH_STANDALONE_PROJECT=OFF \
cmake --build build
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/include
}