homebrew-core/Formula/kbtin.rb
Jack Nagel d87063d32f Remove remaining explicit xz build-time deps
These dependencies are automatically detected from the URL, so declaring
them is redundant. If these formulae ever get a head or devel spec, then
explicit xz deps would need to be re-scoped appropriately. Thus we
should remove them.
2014-03-14 23:40:32 -05:00

17 lines
452 B
Ruby

require 'formula'
class Kbtin < Formula
homepage 'http://kbtin.sourceforge.net'
url 'https://downloads.sourceforge.net/project/kbtin/kbtin/1.0.14/kbtin-1.0.14.tar.xz'
sha1 'b6e09ee7702fe52d48db53098c79fe243505cc0f'
revision 1
depends_on 'gnutls'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end