core/zstd/Pkgfile

16 lines
405 B
Plaintext
Raw Normal View History

2020-07-16 19:32:14 +02:00
# Description: Real-time compression algorithm with high compression ratios
2021-03-04 12:33:04 +01:00
# URL: https://facebook.github.io/zstd/
# Maintainer: CRUX system team, core-ports at crux dot nu
# Depends on: zlib xz
2020-07-16 19:32:14 +02:00
name=zstd
2021-03-04 12:33:04 +01:00
version=1.4.9
2020-07-16 19:32:14 +02:00
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
}