rendered paste body#!/bin/bash
#run this as root to install asciiquarium.
#sudo aptitude install build-essential
wget http://cpan.msi.umn.edu/authors/id/G/GI/GIRAFFED/Curses-1.28.tgz ;
tar xf Curses-1.28.tgz ;
cd Curses-1.28 ;
perl Makefile.PL ;
make ;
make install ;
cd .. ;
rm -rf Curses* ;
wget http://search.cpan.org/CPAN/authors/id/K/KB/KBAUCOM/Term-Animation-2.4.tar.gz ;
tar xf Term-Animation-2.4.tar.gz ;
cd Term-Animation-2.4 ;
perl Makefile.PL ;
make ;
make install ;
cd .. ;
rm -fr Term-Animation-2.4* ;
wget http://www.robobunny.com/projects/asciiquarium/asciiquarium_1.0.tar.gz ;
tar xf asciiquarium_1.0.tar.gz ;
cd asciiquarium_1.0 ;
sudo cp asciiquarium /usr/local/bin/ ;
sudo chmod +x /usr/local/bin/asciiquarium ;
sudo rm -rf asciiquarium*