2009-10-13 13:16:33 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class ShellFm <Formula
|
|
|
|
url 'http://github.com/jkramer/shell-fm/tarball/v0.7'
|
|
|
|
homepage 'http://nex.scrapping.cc/shell-fm/'
|
2010-04-24 02:57:52 +00:00
|
|
|
md5 'b18615ca869c88566993851319635a2c'
|
2009-10-13 13:16:33 +00:00
|
|
|
|
2009-12-02 09:45:15 +00:00
|
|
|
aka 'shell-fm'
|
|
|
|
|
2009-10-13 13:16:33 +00:00
|
|
|
# homepage says that libao is optional, but it doesn't seem
|
|
|
|
# to build without it…
|
2010-04-24 02:57:52 +00:00
|
|
|
depends_on 'pkg-config'
|
2009-10-13 13:16:33 +00:00
|
|
|
depends_on 'libao'
|
|
|
|
depends_on 'mad'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
bin.install 'source/shell-fm'
|
|
|
|
man1.install 'manual/shell-fm.1.gz'
|
|
|
|
end
|
|
|
|
end
|