2010-09-03 09:22:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Picoc < Formula
|
2011-03-18 16:13:05 +00:00
|
|
|
url 'http://picoc.googlecode.com/files/picoc-2.1.tar.bz2'
|
2010-09-03 09:22:13 +00:00
|
|
|
homepage 'http://code.google.com/p/picoc/'
|
2011-03-18 16:13:05 +00:00
|
|
|
md5 '6505fb108d195bad0854c7024993cc24'
|
2010-09-03 09:22:13 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
inreplace 'Makefile' do |s|
|
|
|
|
s.change_make_var! 'CC', ENV['CC']
|
|
|
|
s.change_make_var! 'CFLAGS', ENV['CFLAGS'] + ' -DUNIX_HOST'
|
|
|
|
end
|
|
|
|
|
|
|
|
system "make"
|
|
|
|
bin.install "picoc"
|
|
|
|
end
|
|
|
|
end
|