New formula: herrie 2.2

Closes Homebrew/homebrew#5316.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Anton P. Linevich 2011-04-22 16:45:48 +03:00 committed by Jack Nagel
parent 907ead0a07
commit 47373c9fc5
1 changed files with 19 additions and 0 deletions

19
Formula/herrie.rb Normal file
View File

@ -0,0 +1,19 @@
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
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