mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
2039e6e3b9
Mugshot network. Mugshot makes it easy to show off what you're doing online and keep track of what your friends are up to. WWW: http://www.mugshot.org/ - Ashish Shukla wahjava@gmail.com PR: ports/107174 Submitted by: Ashish Shukla<wahjava@gmail.com>
14 lines
178 B
Bash
14 lines
178 B
Bash
#!/bin/sh
|
|
|
|
FFUPDATE=${PKG_PREFIX}/share/mugshot/firefox-update.sh
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
${FFUPDATE} install
|
|
;;
|
|
PRE-DEINSTALL)
|
|
killall mugshot
|
|
${FFUPDATE} remove
|
|
;;
|
|
esac
|