mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-27 14:59:02 +08:00
82 lines
3.4 KiB
Python
82 lines
3.4 KiB
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import platform
|
||
|
import zlib
|
||
|
from shutil import copy2
|
||
|
import hashlib
|
||
|
|
||
|
windows = platform.platform().startswith('Windows')
|
||
|
osx = platform.platform().startswith('Darwin') or platform.platform().startswith("macOS")
|
||
|
hbb_name = 'rustdesk' + ('.exe' if windows else '')
|
||
|
exe_path = 'target/release/' + hbb_name
|
||
|
|
||
|
|
||
|
def get_version():
|
||
|
with open("Cargo.toml") as fh:
|
||
|
for line in fh:
|
||
|
if line.startswith("version"):
|
||
|
return line.replace("version", "").replace("=", "").replace('"', '').strip()
|
||
|
return ''
|
||
|
|
||
|
|
||
|
def main():
|
||
|
os.system("cp Cargo.toml Cargo.toml.bk")
|
||
|
os.system("cp src/main.rs src/main.rs.bk")
|
||
|
if windows:
|
||
|
txt = open('src/main.rs', encoding='utf8').read()
|
||
|
with open('src/main.rs', 'wt', encoding='utf8') as fh:
|
||
|
fh.write(txt.replace(
|
||
|
'//#![windows_subsystem', '#![windows_subsystem'))
|
||
|
if os.path.exists(exe_path):
|
||
|
os.unlink(exe_path)
|
||
|
os.system('python3 inline-sciter.py')
|
||
|
if os.path.isfile('/usr/bin/pacman'):
|
||
|
os.system('git checkout src/ui/common.tis')
|
||
|
version = get_version()
|
||
|
if windows:
|
||
|
os.system('cargo build --release --features inline')
|
||
|
# os.system('upx.exe target/release/rustdesk.exe')
|
||
|
os.system('mv target/release/rustdesk.exe target/release/RustDesk.exe')
|
||
|
pa = os.environ['P']
|
||
|
os.system('signtool sign /a /v /p %s /debug /f .\\cert.pfx /t http://timestamp.digicert.com target\\release\\rustdesk.exe'%pa)
|
||
|
os.system('cp -rf target/release/RustDesk.exe rustdesk-%s-putes.exe'%version)
|
||
|
else:
|
||
|
os.system('cargo bundle --release --features inline')
|
||
|
if osx:
|
||
|
os.system(
|
||
|
'strip target/release/bundle/osx/RustDesk.app/Contents/MacOS/rustdesk')
|
||
|
os.system(
|
||
|
'cp libsciter.dylib target/release/bundle/osx/RustDesk.app/Contents/MacOS/')
|
||
|
# https://github.com/sindresorhus/create-dmg
|
||
|
os.system('/bin/rm -rf *.dmg')
|
||
|
os.system('create-dmg target/release/bundle/osx/RustDesk.app')
|
||
|
os.rename('RustDesk %s.dmg'%version, 'rustdesk-%s.dmg'%version)
|
||
|
else:
|
||
|
os.system('mv target/release/bundle/deb/rustdesk*.deb ./rustdesk.deb')
|
||
|
os.system('dpkg-deb -R rustdesk.deb tmpdeb')
|
||
|
os.system('mkdir -p tmpdeb/usr/share/rustdesk/files/systemd/')
|
||
|
os.system(
|
||
|
'cp rustdesk.service tmpdeb/usr/share/rustdesk/files/systemd/')
|
||
|
os.system('cp pynput_service.py tmpdeb/usr/share/rustdesk/files/')
|
||
|
os.system('cp DEBIAN/* tmpdeb/DEBIAN/')
|
||
|
os.system('strip tmpdeb/usr/bin/rustdesk')
|
||
|
os.system('mkdir -p tmpdeb/usr/lib/rustdesk')
|
||
|
os.system('cp libsciter-gtk.so tmpdeb/usr/lib/rustdesk/')
|
||
|
md5_file('usr/share/rustdesk/files/systemd/rustdesk.service')
|
||
|
md5_file('usr/share/rustdesk/files/pynput_service.py')
|
||
|
md5_file('usr/lib/rustdesk/libsciter-gtk.so')
|
||
|
os.system('dpkg-deb -b tmpdeb rustdesk.deb; /bin/rm -rf tmpdeb/')
|
||
|
os.rename('rustdesk.deb', 'rustdesk-%s.deb'%version)
|
||
|
os.system("mv Cargo.toml.bk Cargo.toml")
|
||
|
os.system("mv src/main.rs.bk src/main.rs")
|
||
|
|
||
|
|
||
|
def md5_file(fn):
|
||
|
md5 = hashlib.md5(open('tmpdeb/' + fn, 'rb').read()).hexdigest()
|
||
|
os.system('echo "%s %s" >> tmpdeb/DEBIAN/md5sums' % (md5, fn))
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|