20 lines
484 B
Plaintext
20 lines
484 B
Plaintext
|
# Tanım: Son derece hızlı kriptografik olmayan hash algoritması
|
|||
|
# URL: https://github.com/Cyan4973/xxHash
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler:
|
|||
|
# Grup: sistem
|
|||
|
|
|||
|
isim=xxhash
|
|||
|
_isim=xxHash
|
|||
|
surum=0.6.3
|
|||
|
devir=1
|
|||
|
kaynak=(https://github.com/Cyan4973/xxHash/archive/v${surum}.tar.gz::$isim-$surum.tar.gz)
|
|||
|
|
|||
|
derle() {
|
|||
|
cd "${SRC}/${_isim}-${surum}/"
|
|||
|
make
|
|||
|
install -D xxhsum "${PKG}/usr/bin/xxhsum"
|
|||
|
install -D xxh64sum "${PKG}/usr/bin/xxh64sum"
|
|||
|
install -D xxh32sum "${PKG}/usr/bin/xxh32sum"
|
|||
|
}
|