Makefile.kmk revision 0f1d89993a419c98adbb7fc48dc08f4eb6564f7a
# $Id$
## @file
# Install misc stuff and create dist packages for Mac OS X Guest Additions.
#
#
# Copyright (C) 2006-2013 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License (GPL) as published by the Free Software
# Foundation, in version 2 as it comes in the "COPYING" file of the
# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
#
SUB_DEPTH = ../../../../..
include $(KBUILD_PATH)/subheader.kmk
#
# Globals
#
VBOX_PATH_DI_SRC := $(PATH_SUB_CURRENT)
VBOX_DI_OUT_DIR := $(PATH_TARGET)/additions/Installer
BLDDIRS += $(VBOX_DI_OUT_DIR)
ifdef VBOX_WITH_COMBINED_PACKAGE
ifeq ($(KBUILD_TARGET_ARCH),x86)
VBOX_PATH_DIST_32 = $(VBOX_PATH_DIST)/additions
VBOX_PATH_DIST_64 = $(PATH_OUT_BASE)/darwin.amd64/$(KBUILD_TYPE)/dist/additions
else
VBOX_PATH_DIST_64 = $(VBOX_PATH_DIST)/additions
VBOX_PATH_DIST_32 = $(PATH_OUT_BASE)/darwin.x86/$(KBUILD_TYPE)/dist
endif
VBOX_DI_FN_DEP_BOTH = $(VBOX_PATH_DIST_32)/$1 $(VBOX_PATH_DIST_64)/$2
VBOX_DI_FN_DEP_32 = $(VBOX_PATH_DIST_32)/$1
VBOX_DI_FN_DEP_64 = $(VBOX_PATH_DIST_64)/$1
VBOX_DI_LIPO = lipo
else
VBOX_DI_FN_DEP_BOTH = $(VBOX_PATH_DIST)/additions/$1
ifeq ($(KBUILD_TARGET_ARCH),x86)
VBOX_DI_FN_DEP_32 = $(VBOX_PATH_DIST)/additions/$1
VBOX_DI_FN_DEP_64 =
else
VBOX_DI_FN_DEP_64 = $(VBOX_PATH_DIST)/additions/$1
VBOX_DI_FN_DEP_32 =
endif
endif
# Unset this to speed up things during makefile hacking.
VBOX_DARWIN_INST_DEP_ON_MAKEFILE := $(MAKEFILE_CURRENT)
# The location of the pkgbuild program.
ifndef VBOX_PKGBUILD
VBOX_PKGBUILD := pkgbuild
endif
# The location of the productbuild program.
ifndef VBOX_PRODUCTBUILD
VBOX_PRODUCTBUILD := productbuild
endif
# Where we do the packing (override this in LocalConfig.kmk if building on smbfs).
ifndef VBOX_PATH_PACK_TMP
VBOX_PATH_PACK_TMP := $(VBOX_DI_OUT_DIR)
endif
#
# The packing.
#
PACKING += $(VBOX_PATH_DIST)/VBoxDarwinAdditions.dmg
#OTHER_CLEAN = TODO
include $(FILE_KBUILD_SUB_FOOTER)
#
# We're running commands as root here, take some care and assertion
# a sane environment.
#
ifeq ($(strip $(VBOX_PATH_DIST)),)
$(error VBOX_PATH_DIST=$(VBOX_PATH_DIST))
endif
ifeq ($(strip $(VBOX_PATH_DIST)),/)
$(error VBOX_PATH_DIST=$(VBOX_PATH_DIST))
endif
ifeq ($(strip $(VBOX_PATH_PACK_TMP)),)
$(error VBOX_PATH_PACK_TMP=$(VBOX_PATH_PACK_TMP))
endif
ifeq ($(strip $(VBOX_PATH_PACK_TMP)),/)
$(error VBOX_PATH_PACK_TMP=$(VBOX_PATH_PACK_TMP))
endif
#
# The disk image.
#
$(VBOX_PATH_DIST)/VBoxDarwinAdditions.dmg: \
$(VBOX_PATH_PACK_TMP)/DiskImage/VBoxGuestAdditions.pkg \
$(VBOX_BRAND_DARWIN_DISKIMAGE_BG) \
$(VBOX_BRAND_DARWIN_DISKIMAGE_DS_STORE) \
$$(wildcard $(VBOX_PATH_DI_SRC)/DiskImage/*) \
$(VBOX_PATH_DI_SRC)/DiskImage/Uninstall.tool \
$(VBOX_DARWIN_INST_DEP_ON_MAKEFILE)
$(call MSG_TOOL,hdiutil,,,$@)
@# Cleanup any previously failed attempts and various trash.
sudo rm -Rf $(VBOX_PATH_PACK_TMP)/DiskImage.tmp
$(MKDIR) -p $(VBOX_PATH_PACK_TMP)/DiskImage.tmp/
sudo mv $(VBOX_PATH_PACK_TMP)/DiskImage/VBoxGuestAdditions.pkg $(VBOX_PATH_PACK_TMP)/DiskImage.tmp/
sudo rm -Rf \
$@ \
$(VBOX_PATH_PACK_TMP)/DiskImage/
sudo mv $(VBOX_PATH_PACK_TMP)/DiskImage.tmp $(VBOX_PATH_PACK_TMP)/DiskImage
@# Remove .dmg packages from old depend builds
$(QUIET)$(RM) -f $(wildcard $(VBOX_PATH_DIST)/VBoxDarwinAdditions-*-r*.dmg)
@# Populate the image with uninstaller, readme, picture, and .VolumeIcon.icns. (TODO)
$(INSTALL) $(VBOX_PATH_DI_SRC)/DiskImage/Uninstall.tool $(VBOX_PATH_PACK_TMP)/DiskImage/
ifeq (1,1)
@# Pedantic mode...
$(INSTALL) -m 644 $(VBOX_BRAND_DARWIN_DISKIMAGE_DS_STORE) $(VBOX_PATH_PACK_TMP)/DiskImage/.DS_Store
$(MKDIR) $(VBOX_PATH_PACK_TMP)/DiskImage/.background
$(INSTALL) -m 644 $(VBOX_BRAND_DARWIN_DISKIMAGE_BG) $(VBOX_PATH_PACK_TMP)/DiskImage/.background/vbox_folder.tiff
endif
@# Change the owners.
sudo chown -R root:admin $(VBOX_PATH_PACK_TMP)/DiskImage
@# Create the image.
sudo hdiutil create -format UDBZ -volname "VirtualBox Guest Additions" -srcfolder "$(VBOX_PATH_PACK_TMP)/DiskImage" "$@"
@# Change (back) the owner so it can be deleted by the user.
sudo chown "$(shell whoami)" "$@"
sudo chown -R "$(shell whoami)" $(VBOX_PATH_PACK_TMP)/DiskImage
#
# The meta-package.
#
$(VBOX_PATH_PACK_TMP)/DiskImage/VBoxGuestAdditions.pkg: \
$(VBOX_PATH_PACK_TMP)/Packages/VBoxGuestAdditionsKEXTs.pkg \
$(VBOX_PATH_PACK_TMP)/Packages/VBoxGuestAdditionsToolsAndServices.pkg \
$$(wildcard $(VBOX_PATH_DI_SRC)/VBoxGuestAdditions_mpkg/* \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditions_mpkg/*.lproj/*) \
$(foreach f,$(VBOX_INSTALLER_ADD_LANGUAGES), $(VBOX_BRAND_$(f)_VIRTUALBOX_WELCOME_RTF)) \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditions_mpkg/Welcome.rtf \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditions_mpkg/Conclusion.rtf \
$(VBOX_DARWIN_INST_DEP_ON_MAKEFILE)
$(call MSG_TOOL,productbuild,,,$@)
@# Cleanup any previously failed attempts.
sudo rm -Rf \
$@ \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.root \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.desc \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res
@# Correct directory permissions are important.
$(MKDIR) -p \
$(@D) \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.desc \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res/English.lproj
@# Do keyword replacement in the package info and description files.
$(SED) \
-e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
-e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
-e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
-e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
-e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
-e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
-e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
--output $(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res/English.lproj/Welcome.rtf \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditions_mpkg/Welcome.rtf
@# Copy the resources.
$(INSTALL) -m 0644 $(VBOX_PATH_DI_SRC)/VBoxGuestAdditions_mpkg/Conclusion.rtf $(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res/English.lproj/Conclusion.rtf
$(SED) \
-e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
-e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
-e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
--output $(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res/English.lproj/Localizable.strings \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditions_mpkg/Localizable.strings
$(INSTALL) -m 0644 $(VBOX_BRAND_DARWIN_INSTALLER_BG) $(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res/background.tif
$(foreach f,$(VBOX_INSTALLER_ADD_LANGUAGES), \
$(MKDIR) -p \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res/$(VBOX_INSTALLER_$(f)_DARWIN_TARGET).lproj$(NLTAB) \
$(SED) \
-e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
-e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
-e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
-e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
--output $(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res/$(VBOX_INSTALLER_$(f)_DARWIN_TARGET).lproj/Welcome.rtf \
$(VBOX_BRAND_$(f)_VIRTUALBOX_WELCOME_RTF)$(NLTAB) \
$(INSTALL) -m 0644 $(VBOX_BRAND_$(f)_VIRTUALBOX_CONCLUSION_RTF) $(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res/$(VBOX_INSTALLER_$(f)_DARWIN_TARGET).lproj/Conclusion.rtf$(NLTAB) \
$(SED) \
-e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
-e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
-e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
--output $(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res/$(VBOX_INSTALLER_$(f)_DARWIN_TARGET).lproj/Localizable.strings \
$(VBOX_BRAND_$(f)_VIRTUALBOX_LOCALIZABLE_STRINGS)$(NLTAB) \
)
@# Build the package.
$(VBOX_PRODUCTBUILD) \
--distribution $(VBOX_PATH_DI_SRC)/VBoxGuestAdditions_mpkg/distribution.dist \
--package-path $(VBOX_PATH_PACK_TMP)/Packages \
--resources $(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res \
--identifier org.VirtualBox.mpkg.GuestAdditions \
--version $(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD) \
$(if $(VBOX_MACOSX_INSTALLER_SIGN),--sign "$(VBOX_MACOSX_INSTALLER_SIGN)",) \
$@
@# Cleanup.
sudo rm -Rf \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.root \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.desc \
$(VBOX_PATH_PACK_TMP)/VBoxDarwinAdditions.dist.res
VBoxDarwinAdditions.pkg:: $(VBOX_PATH_PACK_TMP)/DiskImage/VBoxDarwinAdditions.pkg
#
# The VirtualBox Kernel extensions.
#
VBOX_DI_KEXTS_UNIVERSAL = VBoxGuest
VBOX_DI_KEXTS = $(VBOX_DI_KEXTS_UNIVERSAL)
$(VBOX_PATH_PACK_TMP)/Packages/VBoxGuestAdditionsKEXTs.pkg: \
$(foreach kext,$(VBOX_DI_KEXTS_UNIVERSAL), $(call VBOX_DI_FN_DEP_BOTH,$(kext).kext/Contents/MacOS/$(kext))) \
$(foreach kext,$(VBOX_DI_KEXTS), $(VBOX_PATH_DIST)/additions/$(kext).kext/Contents/Info.plist) \
$$(wildcard $(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsKEXTs/* \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsKEXTs/*.lproj/*) \
$(foreach f,$(VBOX_INSTALLER_ADD_LANGUAGES), \
$(VBOX_BRAND_$(f)_VBOXKEXTS_DESCRIPTION_PLIST) \
$(VBOX_BRAND_$(f)_VBOXKEXTS_README_HTML) \
$(VBOX_BRAND_$(f)_VBOXKEXTS_INSTALLATIONCHECK_STRINGS)) \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsKEXTs/postflight \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsKEXTs/PkgBuildComponent.plist \
$(VBOX_DARWIN_INST_DEP_ON_MAKEFILE)
$(call MSG_TOOL,pkgbuild,,,$@)
@# Cleanup any previously failed attempts.
sudo rm -Rf \
$@ \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.desc \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.res
@# Correct directory permissions are important.
$(MKDIR) -p \
$(@D) \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.desc \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.res \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.res/English.lproj
$(MKDIR) -p -m 1775 $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library
$(MKDIR) -p -m 0755 \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions \
$(foreach kext,$(VBOX_DI_KEXTS), \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions/$(kext).kext \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions/$(kext).kext/Contents \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions/$(kext).kext/Contents/MacOS )
@# Copy the common files (Info.plist).
$(foreach kext,$(VBOX_DI_KEXTS), \
$(NLTAB)$(INSTALL) -m 0644 $(VBOX_PATH_DIST)/additions/$(kext).kext/Contents/Info.plist $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions/$(kext).kext/Contents/)
@# Copy the binaries and invoking lipo.
ifdef VBOX_WITH_COMBINED_PACKAGE
$(foreach kext,$(VBOX_DI_KEXTS_UNIVERSAL), \
$(NLTAB)$(VBOX_DI_LIPO) -create \
$(VBOX_PATH_DIST_32)/additions/$(kext).kext/Contents/MacOS/$(kext) \
$(VBOX_PATH_DIST_64)/additions/$(kext).kext/Contents/MacOS/$(kext) \
-output $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions/$(kext).kext/Contents/MacOS/$(kext))
else
$(foreach kext,$(VBOX_DI_KEXTS), \
$(NLTAB)$(INSTALL) -m 0755 $(VBOX_PATH_DIST)/additions/$(kext).kext/Contents/MacOS/$(kext) $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions/$(kext).kext/Contents/MacOS/)
endif
@# Signed the kext bundles.
ifdef VBOX_SIGNING_MODE
$(foreach kext,$(VBOX_DI_KEXTS), \
$(NLTAB)$(call VBOX_SIGN_BUNDLE_FN,$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions/$(kext).kext,) )
endif
@# Set the correct owners.
sudo chown root:admin $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library
sudo chown -R root:wheel $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions
# Copy package internal files
$(INSTALL) $(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsKEXTs/PkgBuildComponent.plist $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.desc/PkgBuildComponent.plist
# Copy installer scripts
$(INSTALL) -m 0755 $(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsKEXTs/postflight $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.res
@# Build the package.
$(VBOX_PKGBUILD) \
--root $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root/Library/Extensions/ \
--component-plist $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.desc/PkgBuildComponent.plist \
--script $(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.res \
--identifier org.virtualbox.pkg.additions.kexts \
--version $(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD) \
--install-location /Library/Extensions/ \
--ownership preserve \
$(if $(VBOX_MACOSX_INSTALLER_SIGN),--sign "$(VBOX_MACOSX_INSTALLER_SIGN)",) \
$@
@# Cleanup
sudo rm -Rf \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.root \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.desc \
$(VBOX_PATH_PACK_TMP)/VBoxGuestAdditionsKEXTs.pkg.res
#
# The VirtualBox Guest Additions Tools & Services.
#
VBOX_GA_PKG=VBoxGuestAdditionsToolsAndServices.pkg
VBOX_DI_VB_GA_BINARIES=VBoxClient VBoxControl VBoxService
$(VBOX_PATH_PACK_TMP)/Packages/$(VBOX_GA_PKG): \
$(foreach f, $(VBOX_DI_VB_GA_BINARIES)\
,$(call VBOX_DI_FN_DEP_BOTH,$(f)) ) \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsToolsAndServices/org.virtualbox.additions.vboxclient.plist \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsToolsAndServices/org.virtualbox.additions.vboxservice.plist \
$(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsToolsAndServices/VBoxServiceWrapper \
$(VBOX_PATH_DI_SRC)/DiskImage/Uninstall.tool \
$(VBOX_DARWIN_INST_DEP_ON_MAKEFILE)
$(call MSG_TOOL,pkgbuild,,,$@)
@# Cleanup any previously failed attempts.
sudo rm -Rf \
$@ \
$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root \
$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).desc \
$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).res
@# Correct directory permissions are important.
$(MKDIR) -p \
$(@D) \
$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).desc \
$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).res \
$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).res/English.lproj
@# Create directory structure within a package w/ proper permittions
$(MKDIR) -p -m 0775 \
"$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/Application Support/VirtualBox Guest Additions" \
"$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/LaunchAgents" \
"$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/LaunchDaemons"
@# Install binaries
ifdef VBOX_WITH_COMBINED_PACKAGE
$(foreach binary, $(VBOX_DI_VB_GA_BINARIES) \
,$(VBOX_DI_LIPO) -create \
$(VBOX_PATH_DIST_32)/additions/$(binary) \
$(VBOX_PATH_DIST_64)/additions/$(binary) \
-output "$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/Application Support/VirtualBox Guest Additions/$(binary)"$(NLTAB))
$(foreach binary, $(VBOX_DI_VB_GA_BINARIES), \
$(NLTAB)$(INSTALL) -m 0755 $(VBOX_PATH_DIST_32)/additions/$(binary) "$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/Application Support/VirtualBox Guest Additions/$(binary)-x86" \
$(NLTAB)$(INSTALL) -m 0755 $(VBOX_PATH_DIST_64)/additions/$(binary) "$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/Application Support/VirtualBox Guest Additions/$(binary)-amd64" )
else
$(foreach binary, $(VBOX_DI_VB_GA_BINARIES) \
,$(INSTALL) -m 0755 $(VBOX_PATH_DIST)/additions/$(binary) "$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/Application Support/VirtualBox Guest Additions/$(binary)"$(NLTAB))
$(foreach binary, $(VBOX_DI_VB_GA_BINARIES) \
,$(INSTALL) -m 0755 $(VBOX_PATH_DIST)/additions/$(binary) "$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/Application Support/VirtualBox Guest Additions/$(binary)-$(KBUILD_TARGET_ARCH)"$(NLTAB))
endif
# Add Uninstall.tool
$(INSTALL) $(VBOX_PATH_DI_SRC)/DiskImage/Uninstall.tool "$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/Application Support/VirtualBox Guest Additions/" \
@# Install launchd stuff
$(INSTALL) -m 0755 $(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsToolsAndServices/VBoxServiceWrapper \
"$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/Application Support/VirtualBox Guest Additions/"
$(INSTALL) -m 644 $(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsToolsAndServices/org.virtualbox.additions.vboxclient.plist \
"$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/LaunchAgents/"
$(INSTALL) -m 644 $(VBOX_PATH_DI_SRC)/VBoxGuestAdditionsToolsAndServices/org.virtualbox.additions.vboxservice.plist \
"$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/LaunchDaemons/"
@# Correct ownership
sudo chown -R root:wheel "$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/"
@# Build the package.
$(VBOX_PKGBUILD) \
--root "$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root/Library/" \
--script $(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).res \
--identifier org.virtualbox.pkg.additions.tools-and-services \
--version $(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD) \
--install-location "/Library/" \
--ownership preserve \
$(if $(VBOX_MACOSX_INSTALLER_SIGN),--sign "$(VBOX_MACOSX_INSTALLER_SIGN)",) \
$@
@# Cleanup
sudo rm -Rf \
$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).root \
$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).desc \
$(VBOX_PATH_PACK_TMP)/$(VBOX_GA_PKG).res