aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/picoc.rb
blob: 9b3e239652c19ab75bb0f27881307a0331a38112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Picoc < Formula
  homepage 'http://code.google.com/p/picoc/'
  url 'http://picoc.googlecode.com/files/picoc-2.1.tar.bz2'
  md5 '6505fb108d195bad0854c7024993cc24'

  def install
    system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags} -DUNIX_HOST"
    bin.install "picoc"
  end
end