aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2014-11-17 17:52:06 +0000
committerMike McQuaid2014-11-18 08:42:22 +0000
commit96e14feb497cb936448444ad4798a39a9b1128eb (patch)
treed12d7dbbe7fdfce943daf18fa598104516c1fe7a /Library/Formula
parentd93de760bd3fbce8c9ca4ea3ae2b26db132d3747 (diff)
downloadhomebrew-96e14feb497cb936448444ad4798a39a9b1128eb.tar.bz2
sylpheed 3.4.2
Version bump, fixes tapping the system OpenSSL. Closes #34263. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sylpheed.rb21
1 files changed, 11 insertions, 10 deletions
diff --git a/Library/Formula/sylpheed.rb b/Library/Formula/sylpheed.rb
index cc86d624c..6c9c28cb8 100644
--- a/Library/Formula/sylpheed.rb
+++ b/Library/Formula/sylpheed.rb
@@ -1,20 +1,21 @@
-require 'formula'
+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'
+ homepage "http://sylpheed.sraoss.jp/en/"
+ url "http://sylpheed.sraoss.jp/sylpheed/v3.4/sylpheed-3.4.2.tar.gz"
+ sha1 "693514a792f64ac1a138c7a6542d5ca6b7ac4fdc"
- depends_on 'pkg-config' => :build
+ depends_on "pkg-config" => :build
depends_on :x11
- depends_on 'gpgme'
- depends_on 'gtk+'
- depends_on 'cairo'
+ depends_on "gpgme"
+ depends_on "gtk+"
+ depends_on "cairo"
+ depends_on "openssl"
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-updatecheck"
- system "make install"
+ system "make", "install"
end
end