diff --git a/MANIFEST.in b/MANIFEST.in index d774506..394de94 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ include setup.py m64py AUTHORS README ChangeLog COPYING LICENSES -recursive-include src *.py *.ui *.qrc *.svg *.png *.jpg +recursive-include src *.py *.ui *.qrc *.svg *.png *.jpg *.ts recursive-include xdg *.desktop *.png *.xml global-exclude *_ui.py *_rc.py diff --git a/dist/debian/build.sh b/dist/debian/build.sh index a885e82..0af650b 100755 --- a/dist/debian/build.sh +++ b/dist/debian/build.sh @@ -1,5 +1,5 @@ #!/bin/sh -apt-get -y install build-essential debhelper +apt-get -y install build-essential debhelper pyqt4-dev-tools cp -fr ../debian/ ../../ cd ../../ dpkg-buildpackage -rfakeroot diff --git a/dist/macosx/Info.plist b/dist/macosx/Info.plist new file mode 100644 index 0000000..eeb7880 --- /dev/null +++ b/dist/macosx/Info.plist @@ -0,0 +1,21 @@ + + + +CFBundleShortVersionString +0.1.8 +CFBundleExecutable +m64py.sh +CFBundleName +M64Py +CFBundleInfoDictionaryVersion +6.0 +CFBundleDisplayName +M64Py +CFBundleIconFile +m64py.icns +CFBundlePackageType +APPL +LSBackgroundOnly +1 + + diff --git a/dist/redhat/build.sh b/dist/redhat/build.sh index 76c310e..f5b6eee 100755 --- a/dist/redhat/build.sh +++ b/dist/redhat/build.sh @@ -1,4 +1,5 @@ #!/bin/sh +yum install rpm-build PyQt4-devel -y VERSION=`cat ../../src/m64py/core/defs.py | grep FRONTEND_VERSION | awk -F' = ' '{print $2}' | tr -d '"'` sed "s/{VERSION}/$VERSION/g" m64py.spec.in > m64py.spec cd ../../ && python setup.py sdist diff --git a/dist/windows/build.bat b/dist/windows/build.bat index 2a8ce22..48bbddf 100644 --- a/dist/windows/build.bat +++ b/dist/windows/build.bat @@ -1 +1 @@ -c:\Python27\python.exe c:\m64py\pyinstaller\pyinstaller.py c:\m64py\dist\windows\m64py.spec +c:\Python27\python.exe c:\m64py\pyinstaller-2.1\pyinstaller.py c:\m64py\dist\windows\m64py.spec