homebrew-core/Formula/ncdc.rb
Tobias Stehle f63491c6a7 ncdc 1.16.1
Closes Homebrew/homebrew#18933.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-03 10:54:55 -05:00

21 lines
466 B
Ruby

require 'formula'
class Ncdc < Formula
homepage 'http://dev.yorhel.nl/ncdc'
url 'http://dev.yorhel.nl/download/ncdc-1.16.1.tar.gz'
sha1 '3bdbf8c58a95eab2dc318bd853be991343f88fe9'
depends_on 'glib'
depends_on 'sqlite'
depends_on 'gnutls'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
test do
system "#{bin}/ncdc", "-v"
end
end