FlashBuildNotes
From Inveneo
InveneoPuppyLinux | PackagesAdded
Flash is pre-installed to have a 'just-works' environment.
Latest stable version: http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_7_linux.tar.gz
Installation:
tar zxvf install_flash_player-7.0.61-linux.tar.gz cd install_flash_player_7_linux ./flashplayer-installer /usr/lib/firefox/
Packaging for Puppy:
DotPup used instead of PupGet since both neither can use script-based functionality with PCCC & DotPups are more easily added to a live system (can simply double-click in ROX)
dotpup.sh:
#!/bin/bash # # unzip the files using absolute paths tar -xzpvP --no-same-owner -f flash-7.0.61.tar.gz # Register with PupGet as an alien package echo '"flash-7.0.61" "flash-7.0.61" on "GTK1APPS 975K" \' >> /root/.packages/alienpackages.txt echo "flash-7.0.61" > /root/.packages/flash-7.0.61.keyword mv /tmp/flash-7.0.61.files /root/.packages/flash-7.0.61.files exit 0
tar cvfP flash-7.0.61.tar /usr/lib/firefox/plugins/flashplayer.xpt tar rvfP flash-7.0.61.tar /usr/lib/firefox/plugins/libflashplayer.so find /usr/lib/firefox/plugins/flashplayer.xpt > /tmp/flash-7.0.61.files find /usr/lib/firefox/plugins/libflashplayer.so >> /tmp/flash-7.0.61.files find /tmp/flash-7.0.61.files >> /tmp/flash-7.0.61.files tar rvfP flash-7.0.61.tar /tmp/flash-7.0.61.files gzip -9 flash-7.0.61.tar md5sum dotpup.sh > md5sum.txt md5sum flash-7.0.61.tar.gz >> md5sum.txt zip -r -9 flash-7.0.61.pup dotpup.sh md5sum.txt flash-7.0.61.tar.gz
Install package:
dotpuprox.sh flash-7.0.61.pup

