You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
894 B
29 lines
894 B
12 years ago
|
#!/usr/bin/env python
|
||
|
# Jonas Schnelli, 2013
|
||
|
# make sure the Bitcoin-Qt.app contains the right plist (including the right version)
|
||
|
# fix made because of serval bugs in Qt mac deployment (https://bugreports.qt-project.org/browse/QTBUG-21267)
|
||
|
|
||
|
from string import Template
|
||
|
from datetime import date
|
||
|
|
||
|
bitcoinDir = "./";
|
||
|
|
||
|
inFile = bitcoinDir+"/share/qt/Info.plist"
|
||
|
outFile = "Bitcoin-Qt.app/Contents/Info.plist"
|
||
|
version = "unknown";
|
||
|
|
||
|
fileForGrabbingVersion = bitcoinDir+"bitcoin-qt.pro"
|
||
|
for line in open(fileForGrabbingVersion):
|
||
|
lineArr = line.replace(" ", "").split("=");
|
||
|
if lineArr[0].startswith("VERSION"):
|
||
|
version = lineArr[1].replace("\n", "");
|
||
|
|
||
|
fIn = open(inFile, "r")
|
||
|
fileContent = fIn.read()
|
||
|
s = Template(fileContent)
|
||
|
newFileContent = s.substitute(VERSION=version,YEAR=date.today().year)
|
||
|
|
||
|
fOut = open(outFile, "w");
|
||
|
fOut.write(newFileContent);
|
||
|
|
||
|
print "Info.plist fresh created"
|