diff options
Diffstat (limited to 'repo/core/xxhash.xibuild')
-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 +} + |