diff options
| author | Duncan | 2010-11-17 10:50:06 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2010-11-19 06:36:27 -0800 |
| commit | 029f948cc32ea09de53bdb586a60201b926f83a7 (patch) | |
| tree | 8f8e2f35a486db3905f163f1b855a09da01bf082 /Library/Formula | |
| parent | 4d322cde861e31518d2f3650094c1c98a938f320 (diff) | |
| download | homebrew-029f948cc32ea09de53bdb586a60201b926f83a7.tar.bz2 | |
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>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fex.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/fex.rb b/Library/Formula/fex.rb new file mode 100644 index 000000000..e90d25a35 --- /dev/null +++ b/Library/Formula/fex.rb @@ -0,0 +1,12 @@ +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 |
