-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build and recipe for xxhash * restore pixi.lock * remove CFLAGS variable * add existence tests * remove selectors
- Loading branch information
Showing
3 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
set -euxo pipefail | ||
|
||
# Build step | ||
emmake make install -j8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
context: | ||
name: xxhash | ||
version: 0.8.2 | ||
|
||
package: | ||
name: ${{ name|lower }} | ||
version: ${{ version }} | ||
|
||
source: | ||
url: https://github.com/Cyan4973/${{ name }}/archive/v${{ version }}.tar.gz | ||
sha256: baee0c6afd4f03165de7a4e67988d16f0f2b257b51d0e3cb91909302a26a79c4 | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- ${{ compiler('c') }} | ||
- make | ||
- cmake | ||
|
||
tests: | ||
- script: | ||
- test -f ${PREFIX}/lib/libxxhash.a | ||
- test -f ${PREFIX}/include/xxhash.h | ||
|
||
about: | ||
homepage: http://www.xxhash.com/ | ||
license: BSD-2-Clause | ||
license_file: LICENSE | ||
summary: Extremely fast hash algorithm | ||
description: | | ||
xxHash is an Extremely fast Hash algorithm, running at RAM speed limits. It | ||
successfully completes the SMHasher test suite which evaluates collision, | ||
dispersion and randomness qualities of hash functions. Code is highly | ||
portable, and hashes are identical on all platforms (little / big endian). | ||
repository: https://github.com/Cyan4973/xxHash | ||
documentation: https://github.com/Cyan4973/xxHash | ||
|
||
extra: | ||
recipe-maintainers: | ||
- KGB99 |