d87063d32f
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.
17 lines
452 B
Ruby
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
|