mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
🗜 Update mas.pkg build
This commit is contained in:
parent
d0738e50b6
commit
a3e32656bc
5 changed files with 9 additions and 43 deletions
|
@ -1,23 +0,0 @@
|
|||
<?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">
|
||||
<array>
|
||||
<dict>
|
||||
<key>BundleIsVersionChecked</key>
|
||||
<true/>
|
||||
<key>BundleOverwriteAction</key>
|
||||
<string>upgrade</string>
|
||||
<key>ChildBundles</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>BundleOverwriteAction</key>
|
||||
<string></string>
|
||||
<key>RootRelativeBundlePath</key>
|
||||
<string>Frameworks/MasKit.framework/Versions/A/Frameworks/Commandant.framework</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>RootRelativeBundlePath</key>
|
||||
<string>Frameworks/MasKit.framework</string>
|
||||
</dict>
|
||||
</array>
|
||||
</plist>
|
|
@ -13,5 +13,4 @@ echo "Building mas $VERSION artifacts"
|
|||
script/clean
|
||||
script/build
|
||||
script/archive
|
||||
script/install
|
||||
script/package
|
||||
|
|
|
@ -21,8 +21,6 @@ else
|
|||
PREFIX=/usr/local
|
||||
fi
|
||||
|
||||
script/build
|
||||
|
||||
echo "==> 📲 Installing mas ($VERSION) for $ARCH to $PREFIX"
|
||||
ditto -v \
|
||||
".build/apple/Products/Release/mas" \
|
||||
|
|
|
@ -6,46 +6,38 @@
|
|||
# Builds macOS installer component and distribution packages.
|
||||
#
|
||||
|
||||
BUILD_DIR="$PWD/build"
|
||||
BUILD_DIR="$PWD/.build"
|
||||
COMPONENT_PACKAGE="$BUILD_DIR/mas_components.pkg"
|
||||
DISTRIBUTION_PACKAGE="$BUILD_DIR/mas.pkg"
|
||||
|
||||
IDENTIFIER="com.mphys.mas-cli"
|
||||
|
||||
# Component package definition
|
||||
COMPONENTS_PLIST="Package/Components.plist"
|
||||
|
||||
# Distribution package definition
|
||||
# https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html
|
||||
DISTRIBUTION_PLIST="Package/Distribution.plist"
|
||||
|
||||
# Destination for `xcodebuild install`
|
||||
# DSTROOT will be updated if unset.
|
||||
INSTALL_TEMPORARY_FOLDER=${DSTROOT:-build/distributions}
|
||||
mkdir -p "$INSTALL_TEMPORARY_FOLDER"
|
||||
# Destination for install root
|
||||
DSTROOT=.build/distributions
|
||||
script/install "$DSTROOT/usr/local"
|
||||
|
||||
VERSION=$(script/version)
|
||||
|
||||
echo "==> 📦 Assemble an installer package"
|
||||
|
||||
# Assemble macOS installer component package (aka "product archive").
|
||||
# Using /usr/local prefix to avoid the following errors with "/"
|
||||
# - installer: The install failed (The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.)
|
||||
# - GUI warning: This package is incompatible with this version of macOS and may fail to install. (may damage your system... )
|
||||
pkgbuild \
|
||||
--identifier "$IDENTIFIER" \
|
||||
--install-location "/usr/local" \
|
||||
--install-location "/" \
|
||||
--version "$VERSION" \
|
||||
--root "$INSTALL_TEMPORARY_FOLDER" \
|
||||
--component-plist "$COMPONENTS_PLIST" \
|
||||
--root "$DSTROOT" \
|
||||
"$COMPONENT_PACKAGE"
|
||||
|
||||
# Build distribution package (aka "product archive"). Not sure why, but this is how Carthage does it.
|
||||
# https://github.com/Carthage/Carthage/blob/master/Makefile#L87
|
||||
# https://github.com/Carthage/Carthage/blob/master/Makefile#L69
|
||||
productbuild \
|
||||
--distribution "$DISTRIBUTION_PLIST" \
|
||||
--package-path "$BUILD_DIR" \
|
||||
"$DISTRIBUTION_PACKAGE"
|
||||
|
||||
echo "==> 🔢 Files Hashes"
|
||||
echo "==> 🔢 File Hash"
|
||||
shasum -a 256 "$DISTRIBUTION_PACKAGE"
|
||||
|
|
|
@ -11,7 +11,7 @@ IDENTIFIER=com.mphys.mas-cli
|
|||
echo "==> 📲 Installing mas"
|
||||
|
||||
sudo installer \
|
||||
-pkg build/mas.pkg \
|
||||
-pkg .build/mas.pkg \
|
||||
-target /
|
||||
|
||||
pkgutil --pkg-info "$IDENTIFIER"
|
||||
|
|
Loading…
Reference in a new issue