mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-27 04:43:02 +01:00
77 lines
3.7 KiB
Makefile
77 lines
3.7 KiB
Makefile
# EKU: taken from Makefile.in.firebird
|
|
ROOT=..
|
|
|
|
include $(ROOT)/gen/make.defaults
|
|
include $(ROOT)/gen/make.platform
|
|
include $(ROOT)/gen/make.rules
|
|
include $(ROOT)/gen/make.shared.variables
|
|
|
|
all: package
|
|
|
|
FB_INST_VERS:=$(shell cpp -DDARWIN -I. ../builds/install/arch-specific/darwin/buildsuffix.c | tail -2 | sed -e 's/" "//g' -e 's/"//g' -e 's/Firebird[ ]*//' -e 's/Release Candidate/RC/' -e 's/ /-/g')
|
|
FB_VER_SUFFIX:=$(shell cpp -DDARWIN -I. ../builds/install/arch-specific/darwin/buildsuffix.c | tail -2 | sed -e 's/" "//g' -e 's/"//g')
|
|
FB_VER_SUFFIX_SM:=$(shell cpp -DDARWIN -I. ../builds/install/arch-specific/darwin/buildsuffix.c | tail -2 | sed -e 's/" "//g' -e 's/"//g' -e 's/Firebird[ ]*//' -e 's/Release Candidate/RC/')
|
|
FB_VER_SUFFIX_M:=$(shell cpp -DDARWIN -I. ../builds/install/arch-specific/darwin/buildsuffix.c | tail -2 | sed -e 's/" "//g' -e 's/"//g' -e 's/Release Candidate/RC/')
|
|
FB_MAJOR_VERS:=$(shell cpp -DDARWIN -I. ../builds/install/arch-specific/darwin/majorvers.c | tail -2 | sed -e 's/" "//g' -e 's/"//g')
|
|
FB_MINOR_VERS:=$(shell cpp -DDARWIN -I. ../builds/install/arch-specific/darwin/minorvers.c | tail -2 | sed -e 's/" "//g' -e 's/"//g')
|
|
FB_REV_NO:=$(shell cpp -DDARWIN -I. ../builds/install/arch-specific/darwin/revno.c | tail -2 | sed -e 's/" "//g' -e 's/"//g')
|
|
FB_BUILD_NO:=$(shell cpp -DDARWIN -I. ../builds/install/arch-specific/darwin/buildno.c | tail -2 | sed -e 's/" "//g' -e 's/"//g')
|
|
FB_PLATFORM:=$(CpuType)
|
|
|
|
package: package_firebird
|
|
|
|
package_firebird: INST_NM=Firebird-$(FB_MAJOR_VERS).$(FB_MINOR_VERS).$(FB_REV_NO)-$(FB_BUILD_NO)-$(FB_PLATFORM)
|
|
package_firebird:
|
|
sed -e 's/_FB_BUILD_SUFFIX_/$(FB_VER_SUFFIX)/g' \
|
|
-e 's/_SMFB_BUILD_SUFFIX_/$(FB_VER_SUFFIX_SM)/g' \
|
|
-e 's/_MFB_BUILD_SUFFIX_/$(FB_VER_SUFFIX_M)/g' \
|
|
-e 's/_MAJOR_VERS_/$(FB_MAJOR_VERS)/g' \
|
|
-e 's/_MINOR_VERS_/$(FB_MINOR_VERS)/g' \
|
|
-e 's/_REV_NO_/$(FB_REV_NO)/g' \
|
|
../builds/install/arch-specific/darwin/Info.plist \
|
|
> $(ROOT)/gen/Release/frameworks/Firebird3.framework/Resources/Info.plist
|
|
sed -e 's/_FB_BUILD_SUFFIX_/$(FB_VER_SUFFIX)/g' \
|
|
-e 's/_SMFB_BUILD_SUFFIX_/$(FB_VER_SUFFIX_SM)/g' \
|
|
-e 's/_MFB_BUILD_SUFFIX_/$(FB_VER_SUFFIX_M)/g' \
|
|
-e 's/_MAJOR_VERS_/$(FB_MAJOR_VERS)/g' \
|
|
-e 's/_MINOR_VERS_/$(FB_MINOR_VERS)/g' \
|
|
-e 's/_REV_NO_/$(FB_REV_NO)/g' \
|
|
../builds/install/arch-specific/darwin/Description.plist \
|
|
> $(ROOT)/gen/Release/frameworks/Firebird3.framework/Resources/Description.plist
|
|
|
|
rm -fr $(ROOT)/gen/Release/scripts
|
|
mkdir $(ROOT)/gen/Release/scripts
|
|
cp ../builds/install/arch-specific/darwin/install-script \
|
|
$(ROOT)/gen/Release/scripts/postinstall
|
|
cp ../builds/install/arch-specific/darwin/preupgrade-script \
|
|
$(ROOT)/gen/Release/scripts/preinstall
|
|
chmod u+x $(ROOT)/gen/Release/scripts/postinstall
|
|
chmod u+x $(ROOT)/gen/Release/scripts/preinstall
|
|
|
|
rm -fr $(ROOT)/gen/Release/resources
|
|
mkdir $(ROOT)/gen/Release/resources
|
|
cp ../builds/install/arch-specific/darwin/Welcome.txt \
|
|
$(ROOT)/gen/Release/resources/Welcome.txt
|
|
cp ../builds/install/arch-specific/darwin/Readme.txt \
|
|
$(ROOT)/gen/Release/resources/Readme.txt
|
|
cp ../builds/install/arch-specific/darwin/License.txt \
|
|
$(ROOT)/gen/Release/resources/License.txt
|
|
cp ../builds/install/arch-specific/darwin/Distribution.xml \
|
|
$(ROOT)/gen/Release/Distribution.xml
|
|
|
|
rm -fr Release/packages
|
|
mkdir Release/packages
|
|
pkgbuild --root $(ROOT)/gen/Release/frameworks/Firebird3.framework \
|
|
--identifier com.firebirdsql.Firebird \
|
|
--install-location /Library/Frameworks/Firebird.framework \
|
|
--scripts $(ROOT)/gen/Release/scripts \
|
|
Release/packages/Firebird.pkg
|
|
|
|
productbuild --distribution Release/Distribution.xml \
|
|
--resources Release/resources \
|
|
--package-path Release/packages \
|
|
Release/$(INST_NM).pkg
|
|
|
|
|
|
|