9bef5d58d5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
25 lines
588 B
Ruby
25 lines
588 B
Ruby
require 'formula'
|
|
|
|
class Mu < Formula
|
|
url 'http://mu0.googlecode.com/files/mu-0.9.6.tar.gz'
|
|
homepage 'http://www.djcbsoftware.nl/code/mu/'
|
|
head 'http://mu0.googlecode.com/files/mu-0.9.7-pre.tar.gz'
|
|
|
|
if ARGV.build_head?
|
|
md5 '811e896894f789ef1b87316d4322b412'
|
|
else
|
|
md5 '72fdf907f2b7922a54c8d14bc4b06ccf'
|
|
end
|
|
|
|
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
|