homebrew-core/Formula/fex.rb
Duncan b6e6553cdd Add formula for fex
Add a formula for fex, a field extraction tool.
A replacement for some cut and awk commands.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-19 06:36:27 -08:00

12 lines
296 B
Ruby

require 'formula'
class Fex <Formula
url 'http://semicomplete.googlecode.com/files/fex-1.20100416.2814.tar.gz'
homepage 'http://www.semicomplete.com/projects/fex/'
sha1 'b5748f6d2106633ce32409f7e3709e4c60744572'
def install
ENV['PREFIX'] = prefix
system "make install"
end
end