From 08cc4a1acb42a5d0033c5b636d33eb168f0b0eda Mon Sep 17 00:00:00 2001 From: beville Date: Fri, 13 Jun 2014 06:25:35 +0000 Subject: [PATCH] Use pip-installed pyinstaller git-svn-id: http://comictagger.googlecode.com/svn/trunk@732 6c5673fe-1810-88d6-992b-cd32ca31540c --- mac/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mac/Makefile b/mac/Makefile index 9371d36..ac53b08 100644 --- a/mac/Makefile +++ b/mac/Makefile @@ -1,5 +1,6 @@ #PYINSTALLER_CMD := VERSIONER_PYTHON_PREFER_32_BIT=yes arch -i386 python $(HOME)/pyinstaller-2.0/pyinstaller.py -PYINSTALLER_CMD := python $(HOME)/pyinstaller-2.0/pyinstaller.py +#PYINSTALLER_CMD := python $(HOME)/pyinstaller-2.0/pyinstaller.py +PYINSTALLER_CMD := pyinstaller TAGGER_BASE ?= $(HOME)/Dropbox/tagger/comictagger TAGGER_SRC := $(TAGGER_BASE)/comictaggerlib @@ -16,7 +17,8 @@ DMG_FILE := $(VOLUME_NAME).dmg all: clean dist diskimage dist: - $(PYINSTALLER_CMD) $(TAGGER_BASE)/comictagger.py -o $(MAC_BASE) -w -n $(APP_NAME) -s + #$(PYINSTALLER_CMD) $(TAGGER_BASE)/comictagger.py -o $(MAC_BASE) -w -n $(APP_NAME) -s + $(PYINSTALLER_CMD) $(TAGGER_BASE)/comictagger.py -w -n $(APP_NAME) -s cp -a $(TAGGER_SRC)/ui $(APP_BUNDLE)/Contents/MacOS cp -a $(TAGGER_SRC)/graphics $(APP_BUNDLE)/Contents/MacOS cp $(MAC_BASE)/app.icns $(APP_BUNDLE)/Contents/Resources/icon-windowed.icns