diff options
| author | Peter Aronoff | 2011-02-13 20:18:20 -0500 |
|---|---|---|
| committer | Mike McQuaid | 2011-02-27 20:24:25 +0000 |
| commit | 51c8ca5b3bf267d85e1181ce824f3121539a54ff (patch) | |
| tree | 79e6867b04a5767cf91bf261a1e769724866af35 /Library/Formula | |
| parent | fbbcaadbc32cf311cee85b3b795a4222ded36dfe (diff) | |
| download | homebrew-51c8ca5b3bf267d85e1181ce824f3121539a54ff.tar.bz2 | |
Formula for mu: a tool for searching Maildir mail
Closes #4229.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -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 |
