smlinux/base/zstd/zstd.SMBuild

43 lines
No EOL
1.1 KiB
Text
Executable file

app=zstd
version=1.4.4
build=1sml
homepage="http://zstd.net"
desc="Real-time compression algorithm providing high compression ratios"
requires="gcc-libs zlib xz lz4"
build() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
applypatch $srcdir/zstd.dont.link.pzstd.to.static.libzstd.a.diff
make
make -C contrib/pzstd
make \
prefix="" \
libdir="/lib" \
mandir="/share/man" \
DESTDIR=$pkg install
install -Dm 755 contrib/pzstd/pzstd $pkg/bin/pzstd
# Remove any static libs
rm $pkg/lib/*.a
# zstdmt and zstd are the same, so symlink them
( cd $pkg/bin ; ln -sf zstd zstdmt )
cp -a COPYING* LICENSE $pkgdocs/
mkfinalpkg
}
sha512sums="
1f15e07a051ba2ca066f6c0e2807fa309a2bd01c4994d9a0d12237c3371422316c69da92917d4729f84df82717fb97a0761001a94a9de9a2a538b9002c57fd63 zstd-1.4.4.tar.lz
356a47ea676262c70d0a22c20aedc98a4d1070972ec8910b2bb063c35e32b9beadb09ecab51beab36df24fd678e8948ace3efe485af5208d635dcc7c02d22948 zstd.dont.link.pzstd.to.static.libzstd.a.diff
"