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

class Fex < Formula
  homepage 'http://www.semicomplete.com/projects/fex/'
  url 'https://semicomplete.googlecode.com/files/fex-2.0.0.tar.gz'
  sha1 '014938009ffe0b2ec3d1293154a22e4a40fee4a9'

  def install
    ENV['PREFIX'] = prefix
    system "make install"
  end
end