Skip to content
Snippets Groups Projects
Commit fcc3d035 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

clean up the OSX Makefile according to Christian Frisson's suggestions and revisions:

don't build wiringPi
don't run dpkg-architecture
remove reference to AppMain.tcl
parent a0e50b12
No related branches found
No related tags found
No related merge requests found
......@@ -283,7 +283,7 @@ then
cd ../../
fi
# install raspberry pi externals (if applicable)
if [ $inno -eq 0 -o $dmg -eq 0 ]; then
if [ $inno -eq 0 -a $dmg -eq 0 ]; then
cd raspberry_pi
./makeall.sh
cp -f disis_gpio/disis_gpio.pd_linux ../../packages/linux_make/build$inst_dir/lib/pd-l2ork/extra
......@@ -296,7 +296,7 @@ then
echo "done with l2ork addons."
cd ../
# finish install for deb
if [ $inno -eq 0 -o $dmg -eq 0 ]; then
if [ $inno -eq 0 -a $dmg -eq 0 ]; then
cd packages/linux_make
rm -f build/usr/local/lib/pd
if [ $pkg -gt 0 ]; then
......
......@@ -191,10 +191,6 @@ darwin_app_core: darwin_app_wrapper
install -d "$(PD_APP_CONTENTS)/Resources/bin"
cd "$(PD_APP_CONTENTS)/Resources" && \
ln -s bin Scripts
cd "$(PD_APP_CONTENTS)/Resources/bin" && \
test -e AppMain.tcl || ln -s pd.tk AppMain.tcl
cd "$(PD_APP_CONTENTS)/Resources/bin" && \
test -e pdextended || ln -s pd pdextended
# support for Info Panel Plugins mgmt
cd "$(PD_APP_CONTENTS)" && ln -s Resources/extra Plugins
install -p -m0644 org.puredata.pd-l2ork.default.plist "$(PD_APP_CONTENTS)/Resources/"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment