2017-12-25 15:01:33 -05:00
|
|
|
#!/usr/bin/env bash
|
2017-11-05 17:58:55 -05:00
|
|
|
|
2018-08-30 21:57:14 +02:00
|
|
|
rm -r node_modules
|
|
|
|
|
|
|
|
npm install
|
|
|
|
|
2018-01-08 23:34:54 -05:00
|
|
|
echo "Deleting existing builds"
|
2017-11-08 20:48:48 -05:00
|
|
|
|
2017-11-05 18:31:22 -05:00
|
|
|
rm -r dist/*
|
|
|
|
|
2018-01-08 23:34:54 -05:00
|
|
|
echo "Rebuilding binaries for linux-ia32"
|
2017-12-27 17:39:41 -05:00
|
|
|
./node_modules/.bin/electron-rebuild --arch=ia32
|
2017-11-05 18:31:22 -05:00
|
|
|
|
2018-01-31 08:03:25 -05:00
|
|
|
./node_modules/.bin/electron-packager . --out=dist --platform=linux --arch=ia32 --overwrite
|
2017-12-27 17:39:41 -05:00
|
|
|
|
2018-01-31 08:03:25 -05:00
|
|
|
./node_modules/.bin/electron-packager . --out=dist --platform=win32 --arch=x64 --overwrite
|
2017-12-27 17:39:41 -05:00
|
|
|
|
2018-08-30 21:57:14 +02:00
|
|
|
# we build x64 as second so that we keep X64 binaries in node_modules for local development and server build
|
2018-01-09 20:01:02 -05:00
|
|
|
echo "Rebuilding binaries for linux-x64"
|
|
|
|
./node_modules/.bin/electron-rebuild --arch=x64
|
|
|
|
|
2018-01-31 08:03:25 -05:00
|
|
|
./node_modules/.bin/electron-packager . --out=dist --platform=linux --arch=x64 --overwrite
|
2018-01-09 20:01:02 -05:00
|
|
|
|
2018-01-08 23:34:54 -05:00
|
|
|
echo "Copying required windows binaries"
|
2017-12-27 17:39:41 -05:00
|
|
|
|
2018-01-08 23:34:54 -05: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-08-27 21:07:31 +02:00
|
|
|
cp bin/deps/image/pngquant.exe $WIN_RES_DIR/node_modules/imagemin-pngquant/node_modules/pngquant-bin/vendor/
|
2018-01-08 23:34:54 -05:00
|
|
|
cp bin/deps/image/gifsicle.exe $WIN_RES_DIR/node_modules/giflossy/vendor/
|
|
|
|
cp bin/deps/scrypt.node $WIN_RES_DIR/node_modules/scrypt/build/Release/
|
|
|
|
|
|
|
|
echo "Cleaning up unnecessary binaries from all builds"
|
2017-11-05 17:58:55 -05:00
|
|
|
|
2018-01-08 23:34:54 -05: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
|