aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/herrie.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/herrie.rb b/Library/Formula/herrie.rb
new file mode 100644
index 000000000..2dd98b9cc
--- /dev/null
+++ b/Library/Formula/herrie.rb
@@ -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