Skip to content

Instantly share code, notes, and snippets.

@nitrobin
Created July 19, 2016 10:23
Show Gist options
  • Save nitrobin/5e9405dda2e00a839ffff90b380caa88 to your computer and use it in GitHub Desktop.
Save nitrobin/5e9405dda2e00a839ffff90b380caa88 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -e
sudo mkdir -p /opt/flashplayer
temp_file=$(mktemp)
wget -O $temp_file https://fpdownload.macromedia.com/pub/flashplayer/updaters/22/flashplayer_22_sa_debug.exe
sudo cp $temp_file /opt/flashplayer/flashplayer.exe
echo 'wine /opt/flashplayer/flashplayer.exe "$@"' > $temp_file
sudo cp $temp_file /opt/flashplayer/flashplayer
sudo cp $temp_file /opt/flashplayer/flashplayerdebugger
sudo chmod a+rx /opt/flashplayer/flashplayer
sudo chmod a+rx /opt/flashplayer/flashplayerdebugger
sudo ln -sf /opt/flashplayer/flashplayer /usr/bin/flashplayer
sudo ln -sf /opt/flashplayer/flashplayerdebugger /usr/bin/flashplayerdebugger
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment