Skip to content

Commit 3b902fd

Browse files
neoasceticZeno-
authored andcommittedDec 16, 2014
Fix OSX packaging finally
Signed-off-by: Craig Robbins <kde.psych@gmail.com>
1 parent 8661b35 commit 3b902fd

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed
 

‎CMakeLists.txt

+3-5
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ if(WIN32)
7373
set(LOCALEDIR "locale")
7474
elseif(APPLE)
7575
set(SHAREDIR ".")
76-
set(BINDIR "./bin")
76+
set(BINDIR ".")
7777
set(DOCDIR "./doc/${PROJECT_NAME}")
7878
set(EXAMPLE_CONF_DIR ${DOCDIR})
7979
set(LOCALEDIR "locale")
@@ -213,13 +213,11 @@ if(WIN32)
213213
# This might be needed for some installer
214214
#set(CPACK_PACKAGE_EXECUTABLES bin/minetest.exe "Minetest" bin/minetestserver.exe "Minetest Server")
215215
elseif(APPLE)
216-
# see http://cmake.org/Wiki/CMake:CPackPackageGenerators#Bundle_.28OSX_only.29
217216
set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION_STRING}-osx")
218-
set(CPACK_PACKAGE_ICON ${CMAKE_CURRENT_SOURCE_DIR}/misc/mac/minetest-icon.icns)
217+
set(CPACK_PACKAGE_ICON ${CMAKE_CURRENT_SOURCE_DIR}/misc/minetest-icon.icns)
219218
set(CPACK_BUNDLE_NAME ${PROJECT_NAME})
220219
set(CPACK_BUNDLE_ICON ${CPACK_PACKAGE_ICON})
221-
set(CPACK_BUNDLE_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/misc/mac/Info.plist)
222-
set(CPACK_BUNDLE_STARTUP_COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/misc/mac/minetest-mac.sh)
220+
set(CPACK_BUNDLE_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/misc/Info.plist)
223221
set(CPACK_GENERATOR "Bundle")
224222
else()
225223
set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION_STRING}-linux")

‎misc/Info.plist

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>English</string>
7+
<key>CFBundleExecutable</key>
8+
<string>../Resources/minetest</string>
9+
<key>CFBundleIconFile</key>
10+
<string>minetest.icns</string>
11+
<key>CFBundleIdentifier</key>
12+
<string>net.minetest.minetest</string>
13+
</dict>
14+
</plist>

‎misc/minetest-icon.icns

237 KB
Binary file not shown.

‎src/porting.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ void initializePaths()
528528
{
529529
dstream<<"Bundle resource path: "<<path<<std::endl;
530530
//chdir(path);
531-
path_share = std::string(path) + DIR_DELIM + "share";
531+
path_share = std::string(path) + DIR_DELIM + STATIC_SHAREDIR;
532532
}
533533
else
534534
{

0 commit comments

Comments
 (0)
Please sign in to comment.