blob: c5f4d5d619640dfca46dcf170ea5f86652880c71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Herrie < Formula
url 'http://herrie.info/distfiles/herrie-2.2.tar.bz2'
homepage 'http://herrie.info/'
sha1 'ae5c39be11aeb19898cd3f968580eafc623830b7'
depends_on 'gettext' => :build
depends_on 'glib'
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
|