summaryrefslogtreecommitdiff
path: root/repo
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-09 02:54:18 +0000
committerdavidovski <david@davidovski.xyz>2022-01-09 02:54:18 +0000
commit05b4b120b1d9c2d15574a4d1a9b8403064fcee70 (patch)
treebef1a890283522ffe33f32a2334c8893cff9d86e /repo
parent3b181618ce75eb4009c6fe00b0679c7213afcd23 (diff)
added xxhash
Diffstat (limited to 'repo')
-rw-r--r--repo/core/xxhash.xibuild13
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
+}
+