8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 18:43:02 +01:00

Fix #8334 - MacOS ARM version requires Rosetta.

This commit is contained in:
Adriano dos Santos Fernandes 2024-12-04 19:56:43 -03:00
parent 8927a45c29
commit 5ab014aa14
3 changed files with 22 additions and 1 deletions

View File

@ -5,6 +5,7 @@
<license file="License.txt" mime-type="text/plain"/> <license file="License.txt" mime-type="text/plain"/>
<readme file="Readme.txt" mime-type="text/plain"/> <readme file="Readme.txt" mime-type="text/plain"/>
<pkg-ref id="com.firebirdsql.Firebird"/> <pkg-ref id="com.firebirdsql.Firebird"/>
<options hostArchitectures="arm64"/>
<options customize="never" require-scripts="false"/> <options customize="never" require-scripts="false"/>
<choices-outline> <choices-outline>
<line choice="default"> <line choice="default">

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-gui-script minSpecVersion="1">
<title>Firebird Database Server</title>
<welcome file="Welcome.txt" mime-type="text/plain"/>
<license file="License.txt" mime-type="text/plain"/>
<readme file="Readme.txt" mime-type="text/plain"/>
<pkg-ref id="com.firebirdsql.Firebird"/>
<options hostArchitectures="x86_64"/>
<options customize="never" require-scripts="false"/>
<choices-outline>
<line choice="default">
<line choice="com.firebirdsql.Firebird"/>
</line>
</choices-outline>
<choice id="default"/>
<choice id="com.firebirdsql.Firebird" visible="false">
<pkg-ref id="com.firebirdsql.Firebird"/>
</choice>
<pkg-ref id="com.firebirdsql.Firebird" version="4.0.0" onConclusion="none">Firebird.pkg</pkg-ref>
</installer-gui-script>

View File

@ -58,7 +58,7 @@ package_firebird:
$(ROOT)/gen/$(TARGET)/resources/Readme.txt $(ROOT)/gen/$(TARGET)/resources/Readme.txt
cp ../builds/install/arch-specific/darwin/License.txt \ cp ../builds/install/arch-specific/darwin/License.txt \
$(ROOT)/gen/$(TARGET)/resources/License.txt $(ROOT)/gen/$(TARGET)/resources/License.txt
cp ../builds/install/arch-specific/darwin/Distribution.xml \ cp ../builds/install/arch-specific/darwin/Distribution-$(CpuType).xml \
$(ROOT)/gen/$(TARGET)/Distribution.xml $(ROOT)/gen/$(TARGET)/Distribution.xml
rm -fr $(TARGET)/packages rm -fr $(TARGET)/packages