mirror of
https://github.com/Codeux-Software/Textual.git
synced 2026-06-16 13:24:32 +00:00
28 lines
820 B
Plaintext
Executable File
28 lines
820 B
Plaintext
Executable File
|
|
echo "Extension - ${1} - Start";
|
|
|
|
codesign -f -s "Developer ID Application: Codeux Software, LLC (8482Q6EPL6)" "${SOURCE_FILES_EXTENSIONS}/${1}.bundle"
|
|
|
|
# *****************************************************
|
|
# STANDALONE
|
|
# *****************************************************
|
|
|
|
mkdir -p "${BUILD_PATH_EXTENSIONS_STANDALONE}"
|
|
|
|
cp -Rp "${SOURCE_FILES_EXTENSIONS}/${1}.bundle" "${BUILD_PATH_EXTENSIONS_STANDALONE}"
|
|
|
|
pkgbuild \
|
|
--root "${BUILD_PATH}" \
|
|
--ownership recommended \
|
|
--sign "Developer ID Installer: Codeux Software, LLC (8482Q6EPL6)" \
|
|
--quiet \
|
|
--identifier "com.codeux.app-extensions.textual-extension-installer-${1}" \
|
|
--version "1.0" \
|
|
"${PACKAGES_DESTINATION}/STANDALONE/Extension-${1}.pkg"
|
|
|
|
rm -fr "${BUILD_PATH}"
|
|
|
|
# *****************************************************
|
|
|
|
echo "Extension - ${1} - End";
|