2009-10-13 13:16:33 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ShellFm < Formula
|
2013-03-29 20:29:20 +00:00
|
|
|
url 'https://github.com/jkramer/shell-fm/archive/v0.8.tar.gz'
|
2009-10-13 13:16:33 +00:00
|
|
|
homepage 'http://nex.scrapping.cc/shell-fm/'
|
2013-03-29 20:29:20 +00:00
|
|
|
sha1 '13d8c1f6ce9c24a99d0c3ee6a3ce138835d504a1'
|
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
|