homebrew-core/Formula/tcc.rb
Ryan Davis 5b1511226a tcc 0.9.26
Closes Homebrew/homebrew#24040.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-19 18:59:55 -08:00

15 lines
388 B
Ruby

require 'formula'
class Tcc < Formula
homepage 'http://bellard.org/tcc/'
url 'http://download.savannah.gnu.org/releases/tinycc/tcc-0.9.26.tar.bz2'
sha1 '7110354d3637d0e05f43a006364c897248aed5d0'
def install
ENV.j1
system "./configure", "--prefix=#{prefix}", "--source-path=#{buildpath}"
system "make"
system "make", "install"
system "make", "test"
end
end