diff options
| author | Jack Nagel | 2013-09-20 10:15:56 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-09-21 19:29:55 -0500 |
| commit | 04426f622acfbe3da4d6b18c272f956bc212bd93 (patch) | |
| tree | 70a29529d1d1258a406e8a47ee0793240caad80b /Library | |
| parent | 915fd6ed9fd2310030304911f684106e4c2a24b7 (diff) | |
| download | homebrew-04426f622acfbe3da4d6b18c272f956bc212bd93.tar.bz2 | |
hamsterdb: use spec deps
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/hamsterdb.rb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Library/Formula/hamsterdb.rb b/Library/Formula/hamsterdb.rb index f69dc3e2a..e470414dd 100644 --- a/Library/Formula/hamsterdb.rb +++ b/Library/Formula/hamsterdb.rb @@ -2,21 +2,22 @@ require 'formula' class Hamsterdb < Formula homepage 'http://hamsterdb.com' - head 'https://github.com/cruppstahl/hamsterdb.git', :branch => 'topic/next' url 'http://hamsterdb.com/dl/hamsterdb-2.1.2.tar.gz' sha256 '5d1adbd25aad38646c83b8db013dc02af563c2447bd79b25aeac6cc287d098b0' + head do + url 'https://github.com/cruppstahl/hamsterdb.git', :branch => 'topic/next' + + depends_on 'automake' => :build + depends_on 'libtool' => :build + end + option 'without-java', 'Do not build the Java wrapper' option 'without-remote', 'Disable access to remote databases' depends_on 'boost' depends_on 'gnutls' - if build.head? - depends_on 'automake' => :build - depends_on 'libtool' => :build - end - if build.with? 'remote' depends_on 'protobuf' depends_on 'libuv' |
