15 lines
372 B
Plaintext
15 lines
372 B
Plaintext
# Description: extremely fast, noncryptographic hash algorithm
|
|
# URL: https://github.com/Cyan4973/xxHash
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on:
|
|
|
|
name=xxhash
|
|
version=0.8.2
|
|
release=1
|
|
source=(https://github.com/Cyan4973/xxHash/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd xxHash-$version
|
|
make PREFIX=/usr DESTDIR=$PKG install
|
|
}
|