You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.9 KiB
Python
44 lines
1.9 KiB
Python
import os
|
|
import shutil
|
|
from stuffs.general import General
|
|
|
|
class Smartdock(General):
|
|
id = "smartdock"
|
|
dl_link = "https://github.com/ayasa520/smartdock/releases/download/v1.9.7/smartdock.zip"
|
|
partition = "system"
|
|
extract_to = "/tmp/smartdockunpack"
|
|
dl_file_name = "smartdock.zip"
|
|
act_md5 = "912e00189c562505114cce62c7aa9478"
|
|
apply_props = { "qemu.hw.mainkeys" : "1" }
|
|
files = [
|
|
"etc/permissions/permissions_cu.axel.smartdock.xml",
|
|
"priv-app/SmartDock",
|
|
"etc/init/smartdock.rc"
|
|
]
|
|
rc_content = '''
|
|
on property:sys.boot_completed=1
|
|
start set_home_activity
|
|
|
|
service set_home_activity /system/bin/sh -c "cmd package set-home-activity cu.axel.smartdock/.activities.LauncherActivity"
|
|
user root
|
|
group root
|
|
oneshot
|
|
'''
|
|
|
|
def copy(self):
|
|
if not os.path.exists(os.path.join(self.copy_dir, self.partition, "priv-app", "SmartDock")):
|
|
os.makedirs(os.path.join(self.copy_dir, self.partition, "priv-app", "SmartDock"))
|
|
if not os.path.exists(os.path.join(self.copy_dir, self.partition, "etc", "permissions")):
|
|
os.makedirs(os.path.join(self.copy_dir, self.partition, "etc", "permissions"))
|
|
shutil.copyfile(os.path.join(self.extract_to, "app-release.apk"),
|
|
os.path.join(self.copy_dir, self.partition, "priv-app/SmartDock/smartdock.apk"))
|
|
shutil.copyfile(os.path.join(self.extract_to, "permissions_cu.axel.smartdock.xml"),
|
|
os.path.join(self.copy_dir, self.partition, "etc", "permissions", "permissions_cu.axel.smartdock.xml"))
|
|
|
|
rc_dir = os.path.join(self.copy_dir, self.partition, "etc/init/smartdock.rc")
|
|
if not os.path.exists(os.path.dirname(rc_dir)):
|
|
os.makedirs(os.path.dirname(rc_dir))
|
|
self.extract_app_lib(os.path.join(self.copy_dir, self.partition, "priv-app/SmartDock/smartdock.apk"))
|
|
with open(rc_dir, "w") as f:
|
|
f.write(self.rc_content)
|