2017-12-26 04:01:33 +08:00
|
|
|
#!/usr/bin/env bash
|
2017-11-06 06:58:55 +08:00
|
|
|
|
2018-08-31 03:57:14 +08:00
|
|
|
rm -r node_modules
|
|
|
|
|
|
|
|
npm install
|
|
|
|
|
2018-01-09 12:34:54 +08:00
|
|
|
echo "Deleting existing builds"
|
2017-11-09 09:48:48 +08:00
|
|
|
|
2017-11-06 07:31:22 +08:00
|
|
|
rm -r dist/*
|
|
|
|
|
2018-01-09 12:34:54 +08:00
|
|
|
echo "Rebuilding binaries for linux-ia32"
|
2017-12-28 06:39:41 +08:00
|
|
|
./node_modules/.bin/electron-rebuild --arch=ia32
|
2017-11-06 07:31:22 +08:00
|
|
|
|
2018-01-31 21:03:25 +08:00
|
|
|
./node_modules/.bin/electron-packager . --out=dist --platform=linux --arch=ia32 --overwrite
|
2017-12-28 06:39:41 +08:00
|
|
|
|
2018-01-31 21:03:25 +08:00
|
|
|
./node_modules/.bin/electron-packager . --out=dist --platform=win32 --arch=x64 --overwrite
|
2017-12-28 06:39:41 +08:00
|
|
|
|
2018-08-31 03:57:14 +08:00
|
|
|
# we build x64 as second so that we keep X64 binaries in node_modules for local development and server build
|
2018-01-10 09:01:02 +08:00
|
|
|
echo "Rebuilding binaries for linux-x64"
|
|
|
|
./node_modules/.bin/electron-rebuild --arch=x64
|
|
|
|
|
2018-01-31 21:03:25 +08:00
|
|
|
./node_modules/.bin/electron-packager . --out=dist --platform=linux --arch=x64 --overwrite
|
2018-01-10 09:01:02 +08:00
|
|
|
|
2018-01-09 12:34:54 +08:00
|
|
|
echo "Copying required windows binaries"
|
2017-12-28 06:39:41 +08:00
|
|
|
|
2018-01-09 12:34:54 +08:00
|
|
|
WIN_RES_DIR=./dist/trilium-win32-x64/resources/app
|
|
|
|
|
|
|
|
cp -r bin/deps/sqlite/* $WIN_RES_DIR/node_modules/sqlite3/lib/binding/
|
|
|
|
cp bin/deps/image/cjpeg.exe $WIN_RES_DIR/node_modules/mozjpeg/vendor/
|
2018-10-12 18:37:03 +08:00
|
|
|
cp bin/deps/image/pngquant.exe $WIN_RES_DIR/node_modules/pngquant-bin/vendor/
|
2018-01-09 12:34:54 +08:00
|
|
|
cp bin/deps/image/gifsicle.exe $WIN_RES_DIR/node_modules/giflossy/vendor/
|
|
|
|
|
|
|
|
echo "Cleaning up unnecessary binaries from all builds"
|
2017-11-06 06:58:55 +08:00
|
|
|
|
2018-01-09 12:34:54 +08:00
|
|
|
rm -r ./dist/trilium-linux-ia32/resources/app/bin/deps
|
|
|
|
rm -r ./dist/trilium-linux-x64/resources/app/bin/deps
|
|
|
|
rm -r ./dist/trilium-win32-x64/resources/app/bin/deps
|