Repo for the search and displace ingest module that takes odf, docx and pdf and transforms it into .md to be used with search and displace operations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

84 lines
2.4 KiB

set -e
APP_NAME=${1:-DeskewGui}
APP_TITLE=${2:-Deskew GUI}
BUNDLE_ID=${3:-net.galfarslair.deskewgui}
COPYRIGHT=${4:-© 2019 Marek Mauder}
ICON_PATH=${5:-"../Gui/deskewgui.icns"}
ICON_NAME=$(basename $ICON_PATH .icns)
TIFFLIB_BIN=../_internal/TiffLibBins-macOS
RELEASE_DIR=../_internal/MacRelease
CONTENT_DIR=$RELEASE_DIR/$APP_NAME.app/Contents
mkdir -p $RELEASE_DIR
rm -rf $RELEASE_DIR/*
# build executables
rm -f ../Bin/deskew-mac
rm -f ../Gui/deskewgui
lazbuild --build-mode=Release-macOS -q --no-write-project ../deskew.lpi
lazbuild --build-mode=Release-macOS -q --no-write-project ../Gui/deskewgui.lpi
# app bundle contents
mkdir -p $CONTENT_DIR/MacOS
mkdir $CONTENT_DIR/Resources
cp ../Bin/deskew-mac $CONTENT_DIR/MacOS/
cp ../Gui/deskewgui $CONTENT_DIR/MacOS/
if [ -d $TIFFLIB_BIN ]; then
cp $TIFFLIB_BIN/*.dylib $CONTENT_DIR/MacOS/
fi
chmod 755 $CONTENT_DIR/MacOS/*.*
cp $ICON_PATH $CONTENT_DIR/Resources/
chmod 644 $CONTENT_DIR/Resources/$ICON_NAME.icns
echo "APPL????" > $CONTENT_DIR/PkgInfo
# app bundle props
cat <<EOT >> $CONTENT_DIR/Info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>deskewgui</string>
<key>CFBundleDisplayName</key>
<string>$APP_TITLE</string>
<key>CFBundleName</key>
<string>$APP_TITLE</string>
<key>CFBundleIdentifier</key>
<string>$BUNDLE_ID</string>
<key>CFBundleIconFile</key>
<string>$ICON_NAME</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>desk</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>$COPYRIGHT</string>
<key>NSHighResolutionCapable</key>
<true/>
</dict>
</plist>
EOT
# update version from Lazarus project file
source ./get_gui_versions.sh
plutil -insert CFBundleShortVersionString -string $MAJOR_VER.$MINOR_VER $CONTENT_DIR/Info.plist
plutil -insert CFBundleVersion -string $MAJOR_VER.$MINOR_VER $CONTENT_DIR/Info.plist
# create DMG from folder
DMG_NAME=$APP_NAME-$MAJOR_VER.$MINOR_VER.dmg
hdiutil create -srcfolder $RELEASE_DIR -volname $APP_NAME -format UDZO -ov $RELEASE_DIR/$DMG_NAME
echo "Finished OK!"