aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2014-11-04 22:55:52 +0000
committerMike McQuaid2014-11-05 11:21:12 +0000
commitc892a9b6e70c54bcafcd12ee9f3b58cc61fea2ad (patch)
treeb00d827fafc8f956a63c3ee92a844eba525791a6 /Library/Formula
parent94f0dc014d8ddbca12fc0b0659d53532ba72bc6d (diff)
downloadhomebrew-c892a9b6e70c54bcafcd12ee9f3b58cc61fea2ad.tar.bz2
silc-client: added openssl dependency.
Unrelated to the current silc-client issue opened. Just includes our OpenSSL as a dependency, bumps the SHA to a higher level based on what the website displays, and modifies the homepage to its current location. Closes #33919. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/silc-client.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/silc-client.rb b/Library/Formula/silc-client.rb
index 45b85be97..1d5289715 100644
--- a/Library/Formula/silc-client.rb
+++ b/Library/Formula/silc-client.rb
@@ -1,12 +1,14 @@
require "formula"
class SilcClient < Formula
- homepage "http://silcnet.org/software/users/client/"
+ homepage "http://silcnet.org/client.html"
url "https://downloads.sourceforge.net/project/silc/silc/client/sources/silc-client-1.1.11.tar.gz"
- sha1 "e4438c87342edc95efdf67ac1a6dff9f0c70ea38"
+ sha256 "8cedf2f3c15322296afe094de60504bc27e349f1942713a2f322c7ef6ad5089e"
+ revision 1
depends_on "pkg-config" => :build
depends_on "glib"
+ depends_on "openssl"
def install
system "./configure", "--disable-debug",
@@ -19,7 +21,7 @@ class SilcClient < Formula
"--with-socks",
"--disable-asm"
system "make"
- system "make install"
+ system "make", "install"
end
test do