public
Description: Lightweight console-based radio player for Last.FM radio streams.
Homepage: http://nex.scrapping.cc/code/shell-fm/
Clone URL: git://github.com/jkramer/shell-fm.git
Click here to lend your support to: shell-fm and make a donation at www.pledgie.com !
Jan Zerebecki (author)
Sat Nov 07 02:53:02 -0800 2009
jkramer (committer)
Sat Nov 07 04:54:30 -0800 2009
commit  5eb4571cb8f9e86a7183f69171c54f8dbb51e93d
tree    f408b54e58dbddd80711d21b3f6fbd1bda473fec
parent  bafea74c0395db9888a77fbe20198eb143670c01
shell-fm / INSTALL
100644 32 lines (20 sloc) 0.781 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 
Shell.FM 0.5 Installation
 
 
Requirements:
* libmad
* libao (optional)
* libtagc (optional)
 
 
Installation:
 
1. Run "make".
2. Run "make install" as root.
3. Read the manual for per-user setup information.
 
NOTE: The Makefile uses /usr as PREFIX and $PREFIX/man as MANDIR by default.
You can override those on the command line. For example, Debian/Ubuntu users
usually have their manuals in /usr/share/man, so they would install shell-fm
like this:
 
$ make install PREFIX=/usr MANDIR=/usr/share/man
 
NOTE: To install a stripped version of shell-fm (about 10K smaller), use
"install-strip" instead of "install":
 
$ make install-strip
 
To install to a temporary root (for example, when building a binary
package), you can use the DESTDIR variable, just like with autotools
packages.