1 #!/bin/bash 2 # 3 # This script installs the required perl modules 4 # some necessary libraries and other useful encoders 5 # & decoders which you will find useful while 6 # utilizing the application 7 # 8 # run this script using: sudo sh ./mod-install-debian.sh 9 # 10 # Update: Make sure cpan has already been initizlized before running this script 11 12 echo "" 13 echo "" 14 echo "Installing required libs and perl modules..." 15 echo "" 16 sleep 4 17 18 sudo apt install libvorbis-dev \ 19 libcddb-perl \ 20 libinline-perl \ 21 libcddb-get-perl \ 22 libmp3-tag-perl \ 23 libaudio-scan-perl \ 24 libaudio-flac-header-perl \ 25 libstring-shellquote-perl \ 26 libparallel-forkmanager-perl 27 28 # install some default encoders / decoders 29 30 echo "" 31 echo "" 32 echo "Installing some basic encoding/decoding tools to get you started.." 33 echo "" 34 sleep 4 35 36 sudo apt install vorbis-tools \ 37 lame \ 38 twolame \ 39 sox \ 40 musepack-tools \ 41 ffmpeg \ 42 mplayer \ 43 cdparanoia \ 44 flac \ 45 faad \ 46 opus-tools \ 47 sndfile-programs \ 48 speex \ 49 wavpack \ 50 perl-doc 51 52 echo "" 53 echo "" 54 echo "Settign up your repository to be able to install the restricted-extras package..." 55 echo "" 56 sleep 4 57 58 #sudo apt-get clean 59 #cd /var/lib/apt 60 #sudo mv lists lists.old 61 #sudo mkdir -p lists/partial 62 #sudo apt-get clean 63 #sudo apt-get update 64 65 echo "" 66 echo "" 67 echo "Now install via apt-get ubuntu-restricted-extras or kubuntu-restricted-extras depending on your flavor" 68 echo "" 69 sleep 5