diff options
| author | Schulze Thomas | 2014-07-28 09:22:21 +0200 |
|---|---|---|
| committer | Mike McQuaid | 2014-07-28 09:56:45 +0100 |
| commit | a38b8052bd7fc3f4002b41d07d15c140997f598c (patch) | |
| tree | 91723307d5a8023dc9a348dd5d1317f2f620d243 /Library/Formula | |
| parent | 2a7f662443fa87c92aae977f0c0fd546ccc21483 (diff) | |
| download | homebrew-a38b8052bd7fc3f4002b41d07d15c140997f598c.tar.bz2 | |
dcmtk: add openssl option.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/dcmtk.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/dcmtk.rb b/Library/Formula/dcmtk.rb index 7ba624076..a0ecb13d9 100644 --- a/Library/Formula/dcmtk.rb +++ b/Library/Formula/dcmtk.rb @@ -7,6 +7,7 @@ class Dcmtk < Formula revision 1 option 'with-docs', 'Install development libraries/headers and HTML docs' + option 'with-openssl', 'Configure DCMTK with support for OpenSSL' depends_on 'cmake' => :build depends_on "libpng" @@ -31,6 +32,7 @@ class Dcmtk < Formula args = std_cmake_args args << '-DDCMTK_WITH_DOXYGEN=YES' if build.with? "docs" + args << '-DDCMTK_WITH_OPENSSL=YES' if build.with? "openssl" args << '..' mkdir 'build' do |
