diff options
author | davidovski <david@davidovski.xyz> | 2022-01-09 02:54:18 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-09 02:54:18 +0000 |
commit | 05b4b120b1d9c2d15574a4d1a9b8403064fcee70 (patch) | |
tree | bef1a890283522ffe33f32a2334c8893cff9d86e | |
parent | 3b181618ce75eb4009c6fe00b0679c7213afcd23 (diff) |
added xxhash
-rw-r--r-- | repo/core/xxhash.xibuild | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/repo/core/xxhash.xibuild b/repo/core/xxhash.xibuild new file mode 100644 index 0000000..1b8fe5a --- /dev/null +++ b/repo/core/xxhash.xibuild @@ -0,0 +1,13 @@ +#!/bin/bash + +DEPS=(sh) + +SOURCE=https://github.com/Cyan4973/xxHash/archive/refs/tags/v0.8.1.tar.gz +DESC="xxHash is an Extremely fast Hash algorithm" + + +build () { + make + make DESTDIR=$PKG_DEST install +} + |