homebrew-core/Formula/shell.fm.rb
2011-03-12 11:55:09 -08:00

19 lines
468 B
Ruby

require 'formula'
class ShellFm < Formula
url 'https://github.com/jkramer/shell-fm/tarball/v0.7'
homepage 'http://nex.scrapping.cc/shell-fm/'
md5 '3f83866622a892ee89685f1ed079eefd'
# homepage says that libao is optional, but it doesn't seem
# to build without it
depends_on 'pkg-config' => :build
depends_on 'libao'
depends_on 'mad'
def install
system "make"
bin.install 'source/shell-fm'
man1.install 'manual/shell-fm.1.gz'
end
end