12345678910111213141516 |
- #!/bin/sh
- ### Overall revision 6 ###
- # this is a script to install mplayer
- OLD_VER=`cat /.mplayer/in_data`
- NEW_VER=`cat /.mplayer/mk_data`
- if [ $OLD_VER != $NEW_VER ]; then
- cd /mplayer/ &&
- sudo make install &&
- growlnotify -m "mplayer installed" &&
- echo $NEW_VER|cat>/.mplayer/in_data
- cd -
- else
- growlnotify -m "code is the same, not installing"
- echo -e "\e[1;31mmplayer's code is the same, not going to install\e[m"
- fi
|