1
0

Compare commits

..

No commits in common. "7a25fb5064e4ca42207ec3b3ecc648f61751abc8" and "565c2d9dce3e08e9cea0f1dbe9b319829877912f" have entirely different histories.

View File

@ -81,10 +81,10 @@ class Build(object):
subprocess.run("find .. -iname '*.deb' -exec dpkg -x {} . \;", shell=True)
# Changing desktop file
subprocess.run("find . -iname startcenter.desktop -exec cp {} . \;", shell=True)
#subprocess.run("sed -i -e 's|Name=.*|Name=%s|g' startcenter.desktop" % self.__appname__, shell=True)
subprocess.run("sed -i -e 's|Name=.*|Name=%s|g' startcenter.desktop" % self.__appname__, shell=True)
binaryname = subprocess.check_output("awk 'BEGIN { FS = \"=\" } /^Exec/ { print $2; exit }' startcenter.desktop | awk '{ print $1 }'", shell=True).decode('utf-8').strip('\n')
subprocess.run("find . -name \*startcenter.png -path '*hicolor*48x48*' -exec cp {} . \;" % binaryname, shell=True)
subprocess.run("find . -name startcenter.png -path '*hicolor*48x48*' -exec cp {} %s-startcenter.png \;" % binaryname, shell=True)
os.makedirs(os.path.join(self.__builddir__, self.__appname__, self.__appname__ + '.AppDir', 'usr', 'bin'), exist_ok = True)
os.chdir(os.path.join(self.__builddir__, self.__appname__, self.__appname__ + '.AppDir', 'usr', 'bin'))
@ -110,8 +110,6 @@ class Build(object):
# Copying built image to final directory
subprocess.run("find . -iname '*.AppImage' -exec cp {} %s \;" % outdir, shell = True)
os.chdir('/tmp')
def __del__(self):
del self.__builddir__
@ -129,4 +127,5 @@ if __name__ == '__main__':
b = Build(sys.argv[1], sys.argv[2], sys.argv[3])
b.download()
b.build(sys.argv[4])
del b