ports/opt (3.6): robin-hood-hashing: initial import
commit 18832a23b1be02c5854a80436385c8368a242928 Author: Danny Rawlins <contact@romster.me> Date: Sun Feb 20 22:24:32 2022 +1100 robin-hood-hashing: initial import diff --git a/robin-hood-hashing/.footprint b/robin-hood-hashing/.footprint new file mode 100644 index 000000000..b512779c1 --- /dev/null +++ b/robin-hood-hashing/.footprint @@ -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 diff --git a/robin-hood-hashing/.signature b/robin-hood-hashing/.signature new file mode 100644 index 000000000..81b481d39 --- /dev/null +++ b/robin-hood-hashing/.signature @@ -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 diff --git a/robin-hood-hashing/Pkgfile b/robin-hood-hashing/Pkgfile new file mode 100644 index 000000000..8116cabd3 --- /dev/null +++ b/robin-hood-hashing/Pkgfile @@ -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-$versi...) + +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 +}
participants (1)
-
crux@crux.nu