mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-16 10:39:53 +00:00
* omg it’s compiling * example actually works * Expose compression level options * Disable crypto and path module emulation in webpack * Update README * Remove small image * Use -O3 on optipng * Free memory after copy * Handle unexpected file reader return types * Rename level label to effort
81 lines
2.4 KiB
Bash
Executable File
81 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export PREFIX="/src/build"
|
|
export CFLAGS="-I${PREFIX}/include/"
|
|
export CPPFLAGS="-I${PREFIX}/include/"
|
|
export LDFLAGS="-L${PREFIX}/lib/"
|
|
|
|
apt-get update
|
|
apt-get install -qqy autoconf libtool
|
|
|
|
echo "============================================="
|
|
echo "Compiling zlib"
|
|
echo "============================================="
|
|
test -n "$SKIP_ZLIB" || (
|
|
cd node_modules/zlib
|
|
emconfigure ./configure --prefix=${PREFIX}/
|
|
emmake make
|
|
emmake make install
|
|
)
|
|
echo "============================================="
|
|
echo "Compiling zlib done"
|
|
echo "============================================="
|
|
|
|
echo "============================================="
|
|
echo "Compiling libpng"
|
|
echo "============================================="
|
|
test -n "$SKIP_LIBPNG" || (
|
|
cd node_modules/libpng
|
|
autoreconf -i
|
|
emconfigure ./configure --with-zlib-prefix=${PREFIX}/ --prefix=${PREFIX}/
|
|
emmake make
|
|
emmake make install
|
|
)
|
|
echo "============================================="
|
|
echo "Compiling libpng done"
|
|
echo "============================================="
|
|
|
|
echo "============================================="
|
|
echo "Compiling optipng"
|
|
echo "============================================="
|
|
(
|
|
emcc \
|
|
-O3 \
|
|
-Wno-implicit-function-declaration \
|
|
-I ${PREFIX}/include \
|
|
-I node_modules/optipng/src/opngreduc \
|
|
-I node_modules/optipng/src/pngxtern \
|
|
-I node_modules/optipng/src/cexcept \
|
|
-I node_modules/optipng/src/gifread \
|
|
-I node_modules/optipng/src/pnmio \
|
|
-I node_modules/optipng/src/minitiff \
|
|
--std=c99 -c \
|
|
node_modules/optipng/src/opngreduc/*.c \
|
|
node_modules/optipng/src/pngxtern/*.c \
|
|
node_modules/optipng/src/gifread/*.c \
|
|
node_modules/optipng/src/minitiff/*.c \
|
|
node_modules/optipng/src/pnmio/*.c \
|
|
node_modules/optipng/src/optipng/*.c
|
|
|
|
emcc \
|
|
--bind -O3 \
|
|
-s ALLOW_MEMORY_GROWTH=1 -s MODULARIZE=1 -s 'EXPORT_NAME="optipng"' \
|
|
-I ${PREFIX}/include \
|
|
-I node_modules/optipng/src/opngreduc \
|
|
-I node_modules/optipng/src/pngxtern \
|
|
-I node_modules/optipng/src/cexcept \
|
|
-I node_modules/optipng/src/gifread \
|
|
-I node_modules/optipng/src/pnmio \
|
|
-I node_modules/optipng/src/minitiff \
|
|
-o "optipng.js" \
|
|
--std=c++11 \
|
|
optipng.cpp \
|
|
*.o \
|
|
${PREFIX}/lib/libz.so ${PREFIX}/lib/libpng.a
|
|
)
|
|
echo "============================================="
|
|
echo "Compiling optipng done"
|
|
echo "============================================="
|