Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Aayush
purr-data
Commits
078e5b49
Commit
078e5b49
authored
Jan 24, 2017
by
Albert Gräf
Committed by
Albert Gräf
Jan 26, 2017
Browse files
Use just the real application name (without version/architecture suffix) as PD_APP_NAME on OSX.
parent
042ea93d
Changes
2
Hide whitespace changes
Inline
Side-by-side
packages/Makefile.buildlayout
View file @
078e5b49
...
...
@@ -217,7 +217,8 @@ PD_VERSION := $(PD_L2ORK_VERSION)-$(PD_TEST_VERSION)
VERSION_DATE
:=
$(
shell
date
+%Y%m%d
)
PACKAGE_NAME
=
Pd-l2ork-
$(PD_VERSION)
-
`
uname
-m
`
APPLICATION_NAME
=
Pd-l2ork
PACKAGE_NAME
=
$(APPLICATION_NAME)
-
$(PD_VERSION)
-
`
uname
-m
`
#==============================================================================#
...
...
packages/darwin_app/Makefile
View file @
078e5b49
...
...
@@ -5,7 +5,10 @@ export MACOSX_DEPLOYMENT_TARGET = 10.4
CWD
:=
$(
shell
pwd
)
BUILD_BASE
=
$(CWD)
/build
PD_APP_NAME
=
$(PACKAGE_NAME)
# some folks may prefer to have the version and architecture in the app name
#PD_APP_NAME = $(PACKAGE_NAME)
# but we want just the real name of the application
PD_APP_NAME
=
$(APPLICATION_NAME)
PD_SHORT_NAME
=
"Purr-Data"
PD_APP_CONTENTS
=
$(BUILD_BASE)
/
$(PD_APP_NAME)
.app/Contents
DESTDIR
=
$(PD_APP_CONTENTS)
/Resources/app.nw
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment