smlinux/base/brotli/brotli.SMBuild
PktSurf a67257b7d7 Changes in bldpkg:
* Added code to validate app, version, homepage, download and desc variables
* Updated TODO
* Readjusted location of code that outputs current package being built
Readjusted description length in several packages in base section
2022-02-22 12:03:21 +05:30

32 lines
701 B
Text
Executable file

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