Merge pull request #1549 from brooksytech/dev

Disable PortMaster version of Moonlight
This commit is contained in:
Brooksytech 2023-06-09 13:59:15 -07:00 committed by GitHub
commit 722e0b79ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -76,6 +76,10 @@ fi
$WGET -t 3 -T 60 --no-check-certificate "$website"ports.md -O /dev/shm/portmaster/pports.md
$WGET -t 3 -T 60 --no-check-certificate "$jwebsite"jports.md -O /dev/shm/portmaster/jports.md
#JELOS has moonlight built in, dont use PortMaster's version.
sed -i '/Title="Moonlight ."/d' /dev/shm/portmaster/pports.md
#Combine PortMaster with JelosAddOns
cat /dev/shm/portmaster/pports.md /dev/shm/portmaster/jports.md > /dev/shm/portmaster/ports.md
PortInfoInstall() {

View file

@ -29,7 +29,6 @@ post_makeinstall_target() {
x86_64)
rm -f ${INSTALL}/usr/config/modules/*32bit*
rm -f ${INSTALL}/usr/config/modules/*Master*
rm -f ${INSTALL}/usr/config/modules/*351Files*
;;
*)
rm -f ${INSTALL}/usr/config/modules/Install*
@ -38,6 +37,7 @@ post_makeinstall_target() {
case ${DEVICE} in
S922X*)
rm -f ${INSTALL}/usr/config/modules/*ScummVM*
rm -f ${INSTALL}/usr/config/modules/*32bit*
;;
esac
}