ncdc 1.19

* Added geoip option
* gnutls dependency with-p11-kit option

Closes Homebrew/homebrew#26728.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Tobias Stehle 2014-02-19 09:18:03 +00:00 committed by Mike McQuaid
parent 406fa8c035
commit 5faa199288

View file

@ -2,16 +2,25 @@ require 'formula'
class Ncdc < Formula
homepage 'http://dev.yorhel.nl/ncdc'
url 'http://dev.yorhel.nl/download/ncdc-1.18.1.tar.gz'
sha1 '184dce59b5b51563f869a43d81971a1537cdc438'
url 'http://dev.yorhel.nl/download/ncdc-1.19.tar.gz'
sha1 '7f478b7daf09202586b40899cc6beabeb0d23178'
option 'with-geoip', "Build with geoip support"
depends_on 'glib'
depends_on 'sqlite'
depends_on 'gnutls'
depends_on 'gnutls' => 'with-p11-kit'
depends_on 'pkg-config' => :build
depends_on 'geoip' => :optional
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
args = [
"--disable-dependency-tracking",
"--prefix=#{prefix}",
]
args << '--with-geoip' if build.with? 'geoip'
system "./configure", *args
system "make install"
end