homebrew-core/Formula/nickle.rb
Steven Sartorius 44208a8a37 added nickle
Nickle is a desk calculator language with powerful programming and scripting
capabilities

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-21 20:43:04 -07:00

13 lines
328 B
Ruby

require 'formula'
class Nickle <Formula
url 'http://nickle.org/release/nickle-2.70.tar.gz'
homepage 'http://www.nickle.org/'
md5 'fbb77ad1c6f80a9a67ae28a2a678ed67'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end