diff options
author | Juergen Daubert <jue@jue.li> | 2021-05-15 14:19:07 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-05-15 14:19:07 +0200 |
commit | ea0c89c16ebd30943816390970a247b07e38d8aa (patch) | |
tree | d2ce8d3e21f3bff3332610a791744bc8325e3fc0 /zstd | |
parent | b7747715f317e05cc8f26b1b186d094537541d47 (diff) | |
download | core-ea0c89c16ebd30943816390970a247b07e38d8aa.tar.gz core-ea0c89c16ebd30943816390970a247b07e38d8aa.tar.xz |
zstd: update to 1.5.0, install pzstd
Diffstat (limited to 'zstd')
-rw-r--r-- | zstd/.footprint | 7 | ||||
-rw-r--r-- | zstd/.signature | 8 | ||||
-rw-r--r-- | zstd/Pkgfile | 9 |
3 files changed, 14 insertions, 10 deletions
diff --git a/zstd/.footprint b/zstd/.footprint index 4b5f8e43..cc346b6b 100644 --- a/zstd/.footprint +++ b/zstd/.footprint @@ -1,5 +1,6 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/pzstd lrwxrwxrwx root/root usr/bin/unzstd -> zstd -rwxr-xr-x root/root usr/bin/zstd lrwxrwxrwx root/root usr/bin/zstdcat -> zstd @@ -12,9 +13,9 @@ drwxr-xr-x root/root usr/include/ -rw-r--r-- root/root usr/include/zstd_errors.h drwxr-xr-x root/root usr/lib/ -rw-r--r-- root/root usr/lib/libzstd.a -lrwxrwxrwx root/root usr/lib/libzstd.so -> libzstd.so.1.4.9 -lrwxrwxrwx root/root usr/lib/libzstd.so.1 -> libzstd.so.1.4.9 --rwxr-xr-x root/root usr/lib/libzstd.so.1.4.9 +lrwxrwxrwx root/root usr/lib/libzstd.so -> libzstd.so.1.5.0 +lrwxrwxrwx root/root usr/lib/libzstd.so.1 -> libzstd.so.1.5.0 +-rwxr-xr-x root/root usr/lib/libzstd.so.1.5.0 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/libzstd.pc drwxr-xr-x root/root usr/share/ diff --git a/zstd/.signature b/zstd/.signature index 36de0bab..e1d8df52 100644 --- a/zstd/.signature +++ b/zstd/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/core.pub -RWRJc1FUaeVeqm51QaHvC3GKYRkxu3REhCwCBSYlCT+gK3toXlynHBI5hTnTlXitTEg/1PkEjymAdJnj8uRbmHtR2cNQMBo83QM= -SHA256 (Pkgfile) = 48229656e59572e9a445f2a68b17ed29368edd9a60f1293c7fa127e284148343 -SHA256 (.footprint) = 2138035567103eb8a34f484f54eca1fd1bc3f08c218fe59737b75e067c454c2f -SHA256 (zstd-v1.4.9.tar.gz) = acf714d98e3db7b876e5b540cbf6dee298f60eb3c0723104f6d3f065cd60d6a8 +RWRJc1FUaeVeqhvFSiD2Lr5PsT/plaJp96Oq0hRhbfOvZK9VUSOH3wTGBZd92ylbaUf3r5eSl4XzQM6NlkyuduhrTgjyRmMJogE= +SHA256 (Pkgfile) = afb94a3a12ad8cc4db8de14b9376c18a4372452d44a51c22e8b1454d2722e214 +SHA256 (.footprint) = ce6915c420ebde9a00c2bc5044f14d577fbe59d1f12e7df567890c35ebfa4a02 +SHA256 (zstd-v1.5.0.tar.gz) = 0d9ade222c64e912d6957b11c923e214e2e010a18f39bec102f572e693ba2867 diff --git a/zstd/Pkgfile b/zstd/Pkgfile index 8297a547..7209bf3f 100644 --- a/zstd/Pkgfile +++ b/zstd/Pkgfile @@ -4,12 +4,15 @@ # Depends on: zlib xz name=zstd -version=1.4.9 +version=1.5.0 release=1 source=(https://github.com/facebook/zstd/archive/v$version/$name-v$version.tar.gz) build() { cd $name-$version - make HAVE_THREAD=1 - PREFIX=/usr make DESTDIR=$PKG install + export PREFIX=/usr DESTDIR=$PKG + make + make install + make -C contrib/pzstd + make -C contrib/pzstd install } |