homebrew-core/Formula/ncdc.rb
Vikrant Varma f84fe8b757 ncdc: add HEAD
- Create a 'head' block that points to the ncdc git repo
- Add dependencies for building from git repo: autconf, automake

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-04-17 14:32:22 -04:00

40 lines
845 B
Ruby

require 'formula'
class Ncdc < Formula
homepage 'http://dev.yorhel.nl/ncdc'
url 'http://dev.yorhel.nl/download/ncdc-1.19.tar.gz'
sha1 '7f478b7daf09202586b40899cc6beabeb0d23178'
revision 1
option 'with-geoip', "Build with geoip support"
depends_on 'glib'
depends_on 'sqlite'
depends_on 'gnutls' => 'with-p11-kit'
depends_on 'pkg-config' => :build
depends_on 'geoip' => :optional
head do
url "git://g.blicky.net/ncdc.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
end
def install
system "autoreconf", "-ivf" if build.head?
args = [
"--disable-dependency-tracking",
"--prefix=#{prefix}",
]
args << '--with-geoip' if build.with? 'geoip'
system "./configure", *args
system "make install"
end
test do
system "#{bin}/ncdc", "-v"
end
end