xxhash: update to 0.8.1

This commit is contained in:
Biswapriyo Nath
2021-12-25 20:45:35 +05:30
parent 004cb76b03
commit 2b888b3b04
2 changed files with 11 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
pkgname=rsync
pkgver=3.2.3
pkgrel=1
pkgrel=2
pkgdesc="A file transfer program to keep remote files in sync"
arch=('i686' 'x86_64')
url="https://rsync.samba.org"

View File

@@ -2,7 +2,7 @@
pkgbase=xxhash
pkgname=("xxhash" "libxxhash" "libxxhash-devel")
pkgver=0.8.0
pkgver=0.8.1
pkgrel=1
pkgdesc="Extremely fast non-cryptographic hash algorithm"
arch=('i686' 'x86_64')
@@ -10,8 +10,15 @@ url="https://github.com/Cyan4973/xxHash"
license=('BSD')
makedepends=("gcc"
"cmake")
source=("${pkgname}-${pkgver}.tar.gz::https://codeload.github.com/Cyan4973/xxHash/tar.gz/v${pkgver}")
sha256sums=('7054c3ebd169c97b64a92d7b994ab63c70dd53a06974f1f630ab782c28db0f4f')
source=("${pkgname}-${pkgver}.tar.gz::https://codeload.github.com/Cyan4973/xxHash/tar.gz/v${pkgver}"
"https://github.com/Cyan4973/xxHash/pull/649.patch")
sha256sums=('3bb6b7d6f30c591dd65aaaff1c8b7a5b94d81687998ca9400082c739a690436c'
'7e3fb95799838458161afac6d44e1f11e90be1e87b6acd28b95bd8e309c81e3b')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
patch -p1 -i "${srcdir}/649.patch"
}
build() {
[[ -d "${srcdir}/build-${CARCH}" ]] && rm -rf "${srcdir}/build-${CARCH}"