aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrandon Siegel2012-09-10 12:38:04 -0400
committerAdam Vandenberg2012-10-03 10:43:24 -0700
commite0c4ffd12f04619a2cfe84b9a0f6b39323e9fd27 (patch)
tree0ac6810693be174916dc134c8e6e65427530183b /Library
parent0ae47db07f79c8be1f8faa68a3f727f3d6c000a2 (diff)
downloadhomebrew-e0c4ffd12f04619a2cfe84b9a0f6b39323e9fd27.tar.bz2
silc-client 1.1.8
Closes #14947. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/silc-client.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/Library/Formula/silc-client.rb b/Library/Formula/silc-client.rb
new file mode 100644
index 000000000..9665a3af9
--- /dev/null
+++ b/Library/Formula/silc-client.rb
@@ -0,0 +1,28 @@
+require 'formula'
+
+class SilcClient < Formula
+ homepage 'http://silcnet.org/software/users/client/'
+ url 'http://silcnet.org/download/client/sources/silc-client-1.1.8.tar.gz'
+ sha1 '51fd1f22dbc1ceb15c6fb1a034eb9a09b72ee708'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'glib'
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--sysconfdir=#{etc}",
+ "--with-perl=no",
+ "--enable-ssl",
+ "--enable-ipv6",
+ "--with-socks",
+ "--disable-asm"
+ system "make"
+ system "make install"
+ end
+
+ def test
+ system "#{bin}/silc", "-v"
+ end
+end