diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/mu.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/mu.rb b/Library/Formula/mu.rb new file mode 100644 index 000000000..7593feb51 --- /dev/null +++ b/Library/Formula/mu.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Mu <Formula + url 'http://mu0.googlecode.com/files/mu-0.9.3.tar.gz' + homepage 'http://www.djcbsoftware.nl/code/mu/' + md5 '4f19e26c8621fcace290f78abecf2d36' + + 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 |
