core/zstd/Pkgfile

19 lines
453 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
2021-12-13 11:43:41 +01:00
# Depends on: xz zlib
2020-07-16 19:32:14 +02:00
name=zstd
2022-01-21 15:24:00 +01:00
version=1.5.2
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
2021-05-15 14:19:07 +02:00
export PREFIX=/usr DESTDIR=$PKG
make
make install
make -C contrib/pzstd
make -C contrib/pzstd install
2020-07-16 19:32:14 +02:00
}