blob: df45cd61eec599202b66e8d5cb14fc3fa28e0ce6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Mu < Formula
url 'http://mu0.googlecode.com/files/mu-0.9.7.tar.gz'
sha1 '8641d579a770d59124b72433712841736d326ca6'
homepage 'http://www.djcbsoftware.nl/code/mu/'
head 'git://gitorious.org/mu/old.git'
depends_on 'gettext'
depends_on 'glib'
depends_on 'gmime'
depends_on 'xapian'
def install
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking", "--with-gui=none"
system "make"
system "make install"
end
end
|