aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSqueeks2012-05-09 04:15:49 +1000
committerAdam Vandenberg2012-10-22 09:57:11 -0700
commit2701651ff7dc32c8f014dea72e8e909f7ec49814 (patch)
tree820b6dc75887f202f62477631a3b6e76e162b240 /Library
parent9758072315ef9ddc05207ecb6de9a2b040083231 (diff)
downloadhomebrew-2701651ff7dc32c8f014dea72e8e909f7ec49814.tar.bz2
PolarSSL 1.1.4
Closes #12153. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/polarssl.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/polarssl.rb b/Library/Formula/polarssl.rb
new file mode 100644
index 000000000..d9a936be4
--- /dev/null
+++ b/Library/Formula/polarssl.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Polarssl < Formula
+ homepage 'http://polarssl.org/'
+ url 'http://polarssl.org/code/releases/polarssl-1.1.4-gpl.tgz'
+ sha1 '3dd10bd1a8f7f58e0ef8c91cfa5ea7efd5d5f4bc'
+
+ depends_on 'cmake' => :build
+
+ def install
+ system "cmake", ".", *std_cmake_args
+ system "make"
+ system "make install"
+ end
+end