diff options
| author | Nam Nguyen | 2013-01-02 19:19:48 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-03 08:42:44 -0800 |
| commit | 475c7baeb4e7c2767cb297feaf7899878e00c18e (patch) | |
| tree | 221fd182e20ce4940c65f5e7764331bed7a72004 /Library/Formula/sylpheed.rb | |
| parent | 72e236b36134c571fe63c75c8fc7761d0482ce81 (diff) | |
| download | homebrew-475c7baeb4e7c2767cb297feaf7899878e00c18e.tar.bz2 | |
sylpheed 3.3.0
Closes #16855.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/sylpheed.rb')
| -rw-r--r-- | Library/Formula/sylpheed.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/sylpheed.rb b/Library/Formula/sylpheed.rb new file mode 100644 index 000000000..e3a2c3b2b --- /dev/null +++ b/Library/Formula/sylpheed.rb @@ -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 |
