2009-10-13 13:16:33 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ShellFm < Formula
|
2011-08-31 19:04:34 +00:00
|
|
|
url 'https://github.com/jkramer/shell-fm/tarball/v0.8'
|
2009-10-13 13:16:33 +00:00
|
|
|
homepage 'http://nex.scrapping.cc/shell-fm/'
|
2011-08-31 19:04:34 +00:00
|
|
|
md5 'ce5c45ead71a299edbff280d4007ad99'
|
2011-04-27 23:36:49 +00:00
|
|
|
head 'https://github.com/jkramer/shell-fm.git'
|
2009-10-13 13:16:33 +00:00
|
|
|
|
|
|
|
# homepage says that libao is optional, but it doesn't seem
|
2010-09-19 17:21:57 +00:00
|
|
|
# to build without it
|
|
|
|
depends_on 'pkg-config' => :build
|
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
|