diff options
author | Britney Fransen <brfransen@gmail.com> | 2023-02-12 23:57:43 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2023-02-12 23:57:43 (GMT) |
commit | bc85e1b516a6a4624b055f4d1b4fdf0c3f3a3405 (patch) | |
tree | 5f3e3142b33c69cce475cd4205bc14de64ff7c3a /linhes | |
parent | e09439b06ef0ad8e3784b1a698596a561838a75c (diff) | |
download | linhes_pkgbuild-bc85e1b516a6a4624b055f4d1b4fdf0c3f3a3405.zip linhes_pkgbuild-bc85e1b516a6a4624b055f4d1b4fdf0c3f3a3405.tar.gz linhes_pkgbuild-bc85e1b516a6a4624b055f4d1b4fdf0c3f3a3405.tar.bz2 |
linhes-system: add intel deps
Diffstat (limited to 'linhes')
-rwxr-xr-x | linhes/linhes-system/PKGBUILD | 9 | ||||
-rwxr-xr-x | linhes/linhes-system/myth_mtc.py | 4 |
2 files changed, 7 insertions, 6 deletions
diff --git a/linhes/linhes-system/PKGBUILD b/linhes/linhes-system/PKGBUILD index 966184b..0ec2743 100755 --- a/linhes/linhes-system/PKGBUILD +++ b/linhes/linhes-system/PKGBUILD @@ -1,13 +1,14 @@ pkgname=linhes-system pkgver=9.0.0 -pkgrel=43 +pkgrel=44 arch=('x86_64') #install=$pkgname.install pkgdesc="Everything that makes LinHES a system" license=('GPL2') depends=('cronie' 'dbus-python' 'dvb-firmware' 'expect' 'flatpak' 'firefox' 'glances' 'kdialog' 'libnotify' - 'logrotate' 'linhes-templates' 'linhes-theme' 'mlocate' 'ncdu' - 'openssh' 'pacman-contrib' 'rsyslog' 'ttf-overlock' 'wget' 'x11vnc') + 'logrotate' 'linhes-templates' 'linhes-theme' 'mlocate' 'ncdu' 'python-dateutil' 'python-pytz' + 'python-tzlocal' 'openssh' 'pacman-contrib' 'rsyslog' 'ttf-overlock' 'wget' 'x11vnc' + 'intel-media-driver' 'libva-intel-driver' 'libva-vdpau-driver') binfiles="add_storage.py balance_storage_groups.py empty_storage_groups.py remove_storage.py checkXFSfrag.sh enableIRWake.sh idle.py lh_system_start.sh lh_notify-send lh_home_check.sh lh_myth_status.py jobqueue_helper.py gen_lib_xml.py @@ -39,7 +40,7 @@ sha256sums=('525bfe29b63d3ec5a17a32fa29745e24070020490c3f5b6dd6b03250348fb324' 'ebdb3ee0212e0cc72526bb5e50a032573e1894acb7bf75617243b0b49aa1f8f2' '4d006f0fe3b13e67de1b961d611e81911905a30d140849dfdb8e5c0dc4da2f7c' 'e371c6a289c68fe200d7da856c20a8c579efa23178f4d62235f7359d7f6e49a1' - '29bf341afcbd54ce9a040596fa6a86622bbfe08addad0c673f68661fb93642b4' + 'c9b52a5be54f920ca5fb16423977cb685c9b2db8b39fe9b1c743abf12228a700' 'd2d69b2bf6315bd37ff5f5b2f0cde8ab2fb89bae18f8796dc5208ffc1a9d743e' 'a3f8ba840853e4a189dd52520a6958f4030e1cc3391200a6aeef055fb469f0b4' '1819085bd2c9106482c5f243b95fddf3dae69212330ab76cb493add5c26a45a4' diff --git a/linhes/linhes-system/myth_mtc.py b/linhes/linhes-system/myth_mtc.py index 3cfbfb1..1a71aa9 100755 --- a/linhes/linhes-system/myth_mtc.py +++ b/linhes/linhes-system/myth_mtc.py @@ -122,13 +122,13 @@ def run_stuff(): if ("--backup" in sys.argv) or runall: print("\n#######################################") print("\n%s Running Backup" %(get_timestamp())) - if not os.system('/usr/LH/bin/lh_system_backup_job'): + if not os.system('/usr/bin/lh_system_backup_job'): print("\nFinished Backup") if ("--update" in sys.argv) or runall: print("\n#######################################") print("\n%s Running System Update" %(get_timestamp())) - if not os.system('/usr/LH/bin/lh_system_host_update'): + if not os.system('/usr/bin/lh_system_host_update'): print("\nFinished Update") print("\n#######################################") |