Date: Tuesday, January 15, 2019 @ 20:32:27
Author: bpiotrowski
Revision: 344176
archrelease: copy trunk to testing-x86_64
Added:
zstd/repos/testing-x86_64/
zstd/repos/testing-x86_64/PKGBUILD
(from rev 344175, zstd/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: zstd/repos/testing-x86_64/PKGBUILD (from rev 344175,
zstd/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-01-15 20:32:27 UTC (rev 344176)
@@ -0,0 +1,36 @@
+# Maintainer: Bartłomiej Piotrowski <[email protected]>
+# Contributor: Andrzej Giniewicz <[email protected]>
+# Contributor: Johan Förberg <[email protected]>
+
+pkgname=zstd
+pkgver=1.3.8
+pkgrel=1
+pkgdesc='Zstandard - Fast real-time compression algorithm'
+arch=(x86_64)
+url='http://www.zstd.net/'
+license=(BSD GPL2)
+depends=(zlib xz lz4)
+makedepends=(gtest)
+source=($pkgname-$pkgver.tar.gz::https://github.com/facebook/zstd/archive/v${pkgver}.tar.gz)
+sha256sums=('90d902a1282cc4e197a8023b6d6e8d331c1fd1dfe60f7f8e4ee9da40da886dc3')
+
+build() {
+ cd $pkgname-$pkgver
+ make
+ make zstdmt
+ make -C contrib/pzstd
+}
+
+check() {
+ cd $pkgname-$pkgver
+ make check
+ make -C contrib/pzstd test
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make PREFIX=/usr DESTDIR="$pkgdir/" install
+ install -Dm755 zstdmt "$pkgdir/usr/bin/zstdmt"
+ install -Dm755 contrib/pzstd/pzstd "$pkgdir/usr/bin/pzstd"
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}