version bump

This commit is contained in:
Guillaume Horel 2019-04-17 09:56:23 -04:00
parent 092d2fd6cf
commit 476b0f3531
2 changed files with 10 additions and 7 deletions

View File

@ -1,19 +1,18 @@
pkgbase = zstd-static
pkgdesc = Zstandard - Fast real-time compression algorithm
pkgver = 1.3.8
pkgver = 1.4.0
pkgrel = 1
url = http://www.zstd.net/
arch = x86_64
license = BSD
makedepends = gtest
depends = zlib
depends = xz
depends = lz4
provides = zstd
conflicts = zstd
options = staticlibs
source = https://github.com/facebook/zstd/archive/v1.3.8.tar.gz
sha256sums = 90d902a1282cc4e197a8023b6d6e8d331c1fd1dfe60f7f8e4ee9da40da886dc3
source = https://github.com/facebook/zstd/archive/v1.4.0.tar.gz
sha256sums = 63be339137d2b683c6d19a9e34f4fb684790e864fee13c7dd40e197a64c705c1
pkgname = zstd-static

View File

@ -4,17 +4,16 @@
pkgname=zstd-static
_pkgname=${pkgname%-static}
pkgver=1.3.8
pkgver=1.4.0
pkgrel=1
pkgdesc='Zstandard - Fast real-time compression algorithm'
arch=('x86_64')
url='http://www.zstd.net/'
license=('BSD')
depends=('zlib' 'xz' 'lz4')
makedepends=('gtest')
options=('staticlibs')
source=("https://github.com/facebook/zstd/archive/v${pkgver}.tar.gz")
sha256sums=('90d902a1282cc4e197a8023b6d6e8d331c1fd1dfe60f7f8e4ee9da40da886dc3')
sha256sums=('63be339137d2b683c6d19a9e34f4fb684790e864fee13c7dd40e197a64c705c1')
provides=('zstd')
conflicts=('zstd')
@ -32,3 +31,8 @@ package() {
install -D -m755 contrib/pzstd/pzstd "$pkgdir/usr/bin/pzstd"
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
check() {
cd "$srcdir/$_pkgname-$pkgver"
make check
}