2011-04-22 13:45:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Herrie < Formula
|
|
|
|
url 'http://herrie.info/distfiles/herrie-2.2.tar.bz2'
|
|
|
|
homepage 'http://herrie.info/'
|
|
|
|
md5 '88832b10298ab89473730eb0c93b6ddf'
|
|
|
|
|
|
|
|
depends_on 'gettext' => :build
|
2011-11-11 18:53:16 +00:00
|
|
|
depends_on 'glib'
|
2011-04-22 13:45:48 +00:00
|
|
|
depends_on 'libvorbis'
|
|
|
|
depends_on 'libid3tag'
|
|
|
|
depends_on 'mad'
|
|
|
|
depends_on 'libsndfile'
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['PREFIX'] = prefix
|
|
|
|
system "./configure no_modplug no_xspf coreaudio ncurses"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|