diff options
| author | Dominyk Tiller | 2014-10-17 22:36:39 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-10-19 12:42:31 +0100 |
| commit | 3f82175319caa27855b5c08093b7715a39526f6a (patch) | |
| tree | 31c384617ec2709a1a1af54776d529e71b872594 /Library | |
| parent | 0f3994deab876f73c7ad5651fdf82248e703221f (diff) | |
| download | homebrew-3f82175319caa27855b5c08093b7715a39526f6a.tar.bz2 | |
botan: additional openssl dependency
Added OpenSSL dependency and double quotes everywhere. The download location has also moved upstream. Any attempt to use the old one just gets a redirect to the new one, so I’ve just switched it. For some reason the checksum has changed, but the pgp signature for the download file was verified fine.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/botan.rb | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Library/Formula/botan.rb b/Library/Formula/botan.rb index 81ca1f7b6..75f2b2d7e 100644 --- a/Library/Formula/botan.rb +++ b/Library/Formula/botan.rb @@ -1,11 +1,15 @@ -require 'formula' +require "formula" class Botan < Formula - homepage 'http://botan.randombit.net/' - url 'http://botan.randombit.net/files/Botan-1.10.8.tbz' - sha1 'a7ba0be11629143043da078a4c044eac3369b4ec' + homepage "http://botan.randombit.net/" + url "http://files.randombit.net/botan/Botan-1.10.8.tgz" + sha1 "078fcb03c9ef0691621eda3ca312ebf08b3890cc" + revision 1 - option 'enable-debug', 'Enable debug build of Botan' + option "enable-debug", "Enable debug build of Botan" + + depends_on "pkg-config" => :build + depends_on "openssl" # upstream ticket: https://bugs.randombit.net/show_bug.cgi?id=267 patch :DATA |
