Edited files on Android

This commit is contained in:
Nova Cat 2024-09-14 01:01:37 -07:00
parent 2d0a87be8f
commit 0ea38937f9

View file

@ -1,8 +1,6 @@
#!/usr/bin/python3
import os
print("Creating Debian package...")
if os.name != "posix":
print("WARNING: Machine is not running Linux (value of os.name is not \"posix\"), the script will not try to auto-build the .deb file. You might need to manually `chmod 1777` the binary.")
file = open("sweecrypt-gtk.py").read().split("\n")
open("dpkg/opt/sweecrypt-gtk.ui",'w').write(open("sweecrypt-gtk.ui").read())
file[3] = 'UI_FILE = "/opt/sweecrypt-gtk.ui"'
@ -10,5 +8,4 @@ file.insert(0, "#!/usr/bin/env python3")
file = "\n".join(file)
open("dpkg/usr/bin/sweecrypt-gtk",'w').write(file)
os.system("chmod 1777 dpkg/usr/bin/sweecrypt-gtk")
if os.name == "posix":
os.system("dpkg-deb --root-owner-group --build dpkg sweecrypt-gtk.deb")
os.system("dpkg-deb --root-owner-group --build dpkg sweecrypt-gtk.deb")