Wapt-Pakete für MAC

Fragen zu WAPT-Paketen / Anfragen und Hilfe bezüglich WAPT-Paketen.
Forumregeln
Community-Forumregeln
* Englischer Support auf www.reddit.com/r/wapt
* Französischer Community-Support ist in diesem Forum verfügbar.
* Bitte kennzeichnen Sie gelöste Themen mit [GELÖST].
* Bitte bearbeiten Sie keine Themen, die mit [GELÖST] markiert sind. Erstellen Sie stattdessen ein neues Thema und verweisen Sie auf das alte.
* Geben Sie die installierte WAPT-Version, die vollständige Versionsnummer und die Build-Nummer (2.2.1.11957 / 2.2.2.12337 / usw.) sowie die Enterprise-/Discovery-Edition an.
* Versionen 1.8.2 und älter werden nicht mehr unterstützt. Fragen zu Version 1.8.2 werden nur beantwortet, wenn sie sich auf ein Upgrade auf eine unterstützte Version (2.1, 2.2 usw.) beziehen.
* Geben Sie das Server-Betriebssystem (Linux/Windows) und die Version (Debian Buster/Bullseye – CentOS 7 – Windows Server 2012/2016/2019) an.
* Geben Sie gegebenenfalls das Betriebssystem des Administrations-/Paketerstellungsrechners und des Rechners mit dem problematischen Agenten an (Windows 7/10/11/Debian 11/etc.).
* Vermeiden Sie es, mehrere Fragen in einem Thema zu stellen, da diese sonst möglicherweise ignoriert werden. Falls mehrere Themen relevant sind, erstellen Sie bitte separate Themen, vorzugsweise nacheinander und nicht gleichzeitig (d. h. vermeiden Sie Spam im Forum).
* Fügen Sie Code-Snippets, Screenshots und andere Bilder direkt in Ihren Beitrag ein. Links zu Pastebin, Bitly und anderen Drittanbieterseiten werden systematisch entfernt.
* Wie in jedem Community-Forum erfolgt die Unterstützung freiwillig durch die Mitglieder. Für kommerziellen Support kontaktieren Sie bitte den Vertrieb von Tranquil IT unter +44 2 40 97 57 55.
Gesperrt
ingemedia
Nachrichten: 2
Anmeldung: 28. März 2020 – 13:33 Uhr

9. April 2020 - 10:55 Uhr

Guten Morgen,
Vor einigen Wochen habe ich angeboten, meine WAPT-Pakete für Mac zu teilen (ich stelle einfach meine setup.py-Dateien zum Kopieren und Einfügen bereit, die Sie dann anpassen können). Sie sind alphabetisch sortiert. Gerne können Sie Ihre eigenen Vorschläge oder Korrekturen hinzufügen :)

7ZIP:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
hdiutil attach "7zX_1.7.1.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/7zX/7zX.app" "/Applications/7zX.app"
chown -R root:wheel "/Applications/7zX.app"
chmod -R 755 "/Applications/7zX.app"
sleep 3
hdiutil detach "/Volumes/7zX" -quiet""")

def uninstall():
    run('rm -rf /Applications/7zX -quiet')


ANDROID STUDIO:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
hdiutil attach "android-studio-ide-192.6241897-mac.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/Android Studio 3.6.1/Android Studio.app" "/Applications/Android Studio.app"
chown -R root:wheel "/Applications/Android Studio.app"
chmod -R 755 "/Applications/Android Studio.app"
sleep 3
hdiutil detach "/Volumes/Android Studio 3.6.1" -quiet""")

def uninstall():
    run('rm -rf "/Applications/Android Studio.app"')


KÜHNHEIT:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():

    run("""
hdiutil attach "audacity-macos-2.3.3.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/Audacity 2.3.3/Audacity.app" "/Applications/Audacity.app"
chown -R root:wheel "/Applications/Audacity.app"
chmod -R 755 "/Applications/Audacity.app"
sleep 3
hdiutil detach "/Volumes/Audacity 2.3.3" -quiet""")

def uninstall():
    run('rm -rf /Applications/Audacity.app')

FILEZILLA:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
tar -jxvf FileZilla_3.47.2.1_macosx-x86.app.tar.bz2
mv FileZilla.app /Applications/
chown -R root:wheel /Applications/FileZilla.app
chmod -R 755 /Applications/FileZilla.app""")

def uninstall():
    run('rm -rf /Applications/FileZilla.app')



FIREFOX_ESR:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
hdiutil attach "Firefox 68.6.0esr.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/Firefox/Firefox.app" "/Applications/Firefox.app"
chown -R root:wheel "/Applications/Firefox.app"
chmod -R 755 "/Applications/Firefox.app"
sleep 3
hdiutil detach "/Volumes/Firefox" -quiet""")

def uninstall():
    run('rm -rf /Applications/Firefox.app')

GEANY:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
hdiutil attach "geany-1.36_osx-2.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/Geany 1.36/Geany.app" "/Applications/Geany.app"
chown -R root:wheel "/Applications/Geany.app"
chmod -R 755 "/Applications/Geany.app"
sleep 3
hdiutil detach "/Volumes/Geany 1.36" -quiet""")

def uninstall():
    run('rm -rf "/Applications/Geany.app"')


GEPHI:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
hdiutil attach "gephi-0.9.2-macos.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/Gephi 0.9.2/Gephi.app" "/Applications/Gephi.app"
chown -R root:wheel "/Applications/Gephi.app"
chmod -R 755 "/Applications/Gephi.app"
sleep 3
hdiutil detach "/Volumes/Gephi 0.9.2" -quiet""")

def uninstall():
    run('rm -rf /Applications/Gephi.app')

GOOGLE CHROME:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
hdiutil attach "googlechrome.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/Google Chrome/Google Chrome.app" "/Applications/Google Chrome.app"
chown -R root:wheel "/Applications/Google Chrome.app"
chmod -R 755 "/Applications/Google Chrome.app"
sleep 3
hdiutil detach "/Volumes/Google Chrome" -quiet""")

def uninstall():
    run('rm -rf "/Applications/Google Chrome.app"')
    run(r'"googlechrome.dmg" /VERYSILENT') //je ne sais plus pourquoi cette ligne... à vérifier

SKYPE:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""r'"" /VERYSILENT')
hdiutil attach "Skype-8.58.0.93.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/Skype/Skype.app" "/Applications/Skype.app"
chown -R root:wheel "/Applications/Skype.app"
chmod -R 755 "/Applications/Skype.app"
sleep 3
hdiutil detach "/Volumes/Skype" -quiet""")

def uninstall():
    run('rm -rf "/Applications/Skype.app"')
VIRTUALBOX:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
hdiutil attach "VirtualBox-6.1.4-136177-OSX.dmg" -nobrowse -quiet
installer -pkg /Volumes/VirtualBox/VirtualBox.pkg -target /
chown -R root:wheel "/Applications/VirtualBox.app"
chmod -R 755 "/Applications/VirtualBox.app"
sleep 3
hdiutil detach "/Volumes/VirtualBox" -quiet""")

def uninstall():
        run('rm -rf /Applications/VirtualBox.app')

VLC:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
hdiutil attach "vlc-3.0.8.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/VLC media player/VLC.app" "/Applications/VLC.app"
chown -R root:wheel "/Applications/VLC.app"
chmod -R 755 "/Applications/VLC.app"
sleep 3
hdiutil detach "/Volumes/VLC media player" -quiet""")

def uninstall():
    run('rm -rf /Applications/VLC.app')

VSCODE:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
unzip VSCode-darwin-stable.zip -d /Applications
chown -R root:wheel "/Applications/Visual Studio Code.app"
chmod -R 755 "/Applications/Visual Studio Code.app"
""")

def uninstall():
    run('rm -rf /Applications/Visual\ Studio\ Code.app')


XCODE:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    run("""
mv Xcode_11.3.1.xip /Applications/
cd /Applications/
xip -x Xcode_11.3.1.xip
rm -f Xcode_11.3.1.xip
chown -R root:wheel "/Applications/Xcode.app"
chmod -R 755 "/Applications/Xcode.app"
""")

def uninstall():
    run('rm -rf "/Applications/Xcode.app"')



ZOTERO:

Code: Alle auswählen

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
     run("""
hdiutil attach "Zotero-5.0.85.dmg" -nobrowse -quiet
ditto -rsrc "/Volumes/Zotero/Zotero.app" "/Applications/Zotero.app"
chown -R root:wheel "/Applications/Zotero.app"
chmod -R 755 "/Applications/Zotero.app"
sleep 3
hdiutil detach "/Volumes/Zotero" -quiet""")

def uninstall():
    run('rm -rf /Applications/Zotero.app')
Gesperrt