base/{busybox,enchant,fftw,kmod,llvm,musl} Replaced CFLAGS and related CFLAGS with += operator for cleanliness Fixed mkdir commands in: base/{exiv2,fmt,glib,json-glib} Fixed file/recompile_magic.mgc.sh script by discarding /usr in base/file build file Tuned build options in base/flac Discarded unnecessary CPPFLAGS and printf command in base/flex Replaced CFLAGS with LDFLAGS in base/gawk Discarded /usr/bin/update-mime-database with own /etc/rc.d.rc.gtk liner in base/glib's doinst.sh file Discarded CXXFLAGS liner in base/glib Discarded mkdir liner in base/initfs Cause base/llvm build file to properly cd into the smbuild directory smoothly when attempting a rebuild in future Discarded unnecessary CFLAGS options in base/mksh Upgraded base/zstd to 1.5.2, rewrote its build options to use cmake build system
40 lines
990 B
Text
Executable file
40 lines
990 B
Text
Executable file
app=zstd
|
|
version=1.5.2
|
|
build=1sml
|
|
homepage="https://github.com/facebook/zstd"
|
|
download="https://github.com/facebook/zstd/releases/download/v$version/zstd-$version.tar.gz"
|
|
desc="Real-time compression algorithm providing high compression ratios"
|
|
requires="gcc-libs zlib xz lz4"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
mkdir -p smbuild && cd smbuild
|
|
cmake ../build/cmake \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX="" \
|
|
-DCMAKE_INSTALL_LIBDIR="lib" \
|
|
-DZSTD_ZLIB_SUPPORT=ON \
|
|
-DZSTD_LZMA_SUPPORT=ON \
|
|
-DZSTD_LZ4_SUPPORT=ON \
|
|
-DZSTD_BUILD_STATIC=OFF \
|
|
-DZSTD_PROGRAMS_LINK_SHARED=ON
|
|
|
|
make
|
|
make install DESTDIR="$pkg"
|
|
|
|
cp ../LICENSE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
7b7a6e3ca395eef68e40119f9168a0730d561b94b8fa5be9b3936ec7f86cad4b1333596604a260d3ab81d593de4bef9fad43d41eb9fe0d74e202173ef7f2728c zstd-1.5.2.tar.lz
|
|
"
|