New Formula: kbtin
KBtin is a very heavily extended clone of TinTin++. Closes Homebrew/homebrew#7803. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
This commit is contained in:
parent
c14558739c
commit
9e2e3da6df
1 changed files with 17 additions and 0 deletions
17
Formula/kbtin.rb
Normal file
17
Formula/kbtin.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
require 'formula'
|
||||
|
||||
class Kbtin < Formula
|
||||
url 'http://downloads.sourceforge.net/project/kbtin/kbtin/1.0.13/kbtin-1.0.13.tar.gz'
|
||||
homepage 'http://kbtin.sourceforge.net'
|
||||
md5 '5e23f48ac72e1609853895b44a0e3e90'
|
||||
|
||||
depends_on 'libiconv'
|
||||
depends_on 'gnutls'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue