-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4772 from gigamonster256/macos-arm64
Support compiling native MacOS arm64 (Apple Silicon) builds
- Loading branch information
Showing
6 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env bash | ||
|
||
SRC_DIR=./dist/trilium-mac-arm64-src | ||
|
||
if [ "$1" != "DONTCOPY" ] | ||
then | ||
./bin/copy-trilium.sh $SRC_DIR | ||
fi | ||
|
||
echo "Copying required mac arm64 binaries" | ||
|
||
cp -r bin/better-sqlite3/mac-arm64-better_sqlite3.node $SRC_DIR/node_modules/better-sqlite3/build/Release/better_sqlite3.node | ||
|
||
rm -r $SRC_DIR/src/public/app-dist/*.mobile.* | ||
|
||
echo "Packaging mac arm64 electron build" | ||
|
||
./node_modules/.bin/electron-packager $SRC_DIR --asar --out=dist --executable-name=trilium --platform=darwin --arch=arm64 --overwrite --icon=images/app-icons/mac/icon.icns | ||
|
||
BUILD_DIR=./dist/trilium-mac-arm64 | ||
rm -rf $BUILD_DIR | ||
|
||
# Mac build has by default useless directory level | ||
mv "./dist/Trilium Notes-darwin-arm64" $BUILD_DIR | ||
|
||
cp bin/tpl/anonymize-database.sql $BUILD_DIR/ | ||
|
||
cp -r dump-db $BUILD_DIR/ | ||
rm -rf $BUILD_DIR/dump-db/node_modules | ||
|
||
echo "Zipping mac arm64 electron distribution..." | ||
|
||
VERSION=`jq -r ".version" package.json` | ||
|
||
cd dist | ||
|
||
rm trilium-mac-arm64-${VERSION}.zip | ||
zip -r9 --symlinks trilium-mac-arm64-${VERSION}.zip trilium-mac-arm64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters