sylpheed 3.3.0

Closes Homebrew/homebrew#16855.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Nam Nguyen 2013-01-02 19:19:48 -08:00 committed by Adam Vandenberg
parent 40c9b2db19
commit 786d7f5dee
1 changed files with 19 additions and 0 deletions

19
Formula/sylpheed.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
class Sylpheed < Formula
homepage 'http://sylpheed.sraoss.jp/en/'
url 'http://sylpheed.sraoss.jp/sylpheed/v3.3/sylpheed-3.3.0.tar.bz2'
sha1 '07b7dd7f0b58065b6f8db7a3b443240aade7da6a'
depends_on :x11
depends_on 'gpgme'
depends_on 'gtk+'
depends_on 'cairo'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-updatecheck"
system "make install"
end
end