# HG changeset patch # User Anirudha Bose # Date 1379767482 -19800 # Node ID e36a4b5c9719a5e32ba4f55fbb347262a3bd0410 # Parent a3a6870253d765d57425cc8c51ebf0e4df23ddcf [Darwin] Include dmgCreator in MXE for producing .dmg disk images diff --git a/Makefile.in b/Makefile.in --- a/Makefile.in +++ b/Makefile.in @@ -308,7 +308,8 @@ $(if $(filter %.tar.lzma,$(1)),xz -dc -F lzma '$(1)' | $(3) xf -, \ $(if $(filter %.tar.xz,$(1)),xz -dc '$(1)' | $(3) xf -, \ $(if $(filter %.zip, $(1)),unzip -q '$(1)', \ - $(error Unknown archive format for $(2): $(1)))))))) + $(if $(filter %.dmg, $(1)),echo "Adding exception in recognized archive formats for dmgcreator", \ + $(error Unknown archive format for $(2): $(1))))))))) UNPACK_PKG_ARCHIVE = \ $(if $(value $(1)_FILE),$(call UNPACK_ARCHIVE,$(PKG_DIR)/$($(1)_FILE),$(1),$(2)),true) diff --git a/index.html b/index.html --- a/index.html +++ b/index.html @@ -1104,6 +1104,11 @@ DevIL + dmgcreator + 1.0.1 + dmgCreator + + eigen 2.0.17 eigen diff --git a/src/dmgcreator.mk b/src/dmgcreator.mk new file mode 100644 --- /dev/null +++ b/src/dmgcreator.mk @@ -0,0 +1,21 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := dmgcreator +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := 94bbec215ac742e3a26a8f9105e60cbb32da78c6 +$(PKG)_REMOTE_SUBDIR := +$(PKG)_SUBDIR := +$(PKG)_FILE := dmgCreator_$($(PKG)_VERSION).dmg +$(PKG)_URL := 'http://sourceforge.net/projects/dmgcreator/files/$($(PKG)_FILE)/download' +$(PKG)_DEPS := + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package $(PKG). Development of package is currently inactive' >&2; + echo $($(PKG)_VERSION) +endef + +define $(PKG)_BUILD + echo 'Note: $(PKG) must be installed in Mac OS X by executing the file pkg/$($(PKG)_FILE).' +endef +