smlinux/base/brotli/brotli.SMBuild
PktSurf 32eaa8d266 Moved bootstrap function call into prepbuilddir and disabled static lib generation in base/brotli
Fixed man page path in base/chrpath
Removed unnecessary -a while cp'ing COPYING file in base/cpio
Added code to copy LICENSEs in base/{dmraid,libyaml,ndctl}
Only cp COPYING file in base/{libgit2,nasm,sbc,slapt-get}
Fix prefix in base/libvpx
Fix desc variable value in base/ncdu
base/patch does not need to be statically-linked
Disabled installation of example files in base/qpdf
Discarded --disable-tcl build option in base/sqlite
Applied CVE patch 2022-48303 for base/tar
2023-03-30 12:18:48 +05:30

35 lines
745 B
Text
Executable file

app=brotli
version=1.0.7
build=2sml
homepage="https://github.com/google/brotli"
download="https://github.com/google/brotli/archive/refs/tags/v$version.tar.gz"
requires="musl"
desc="Lossless compression algorithm based on LZ77, Huffman coding and 2nd order context modeling"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
./bootstrap
}
build() {
./configure \
--prefix="" \
--disable-static
make
make install DESTDIR=$pkg
cp LICENSE $pkgdocs/
mkfinalpkg
}
sha512sums="
74c138ff3cd31185daed65666afb163279d2766d367bff9f3133252467772e47450b4b5dee9476d2cad4198d8e613739673de54648252b9d5e0887be5d87ca5d brotli-1.0.7.tar.lz
"