diff options
| author | Allen Bargi | 2011-12-27 16:58:26 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-11 22:57:22 -0700 |
| commit | 302e31b36b9078f441fb6025c7a323532289313c (patch) | |
| tree | b850db4b9b62c9cc0abe178122634981259ea925 /Library/Formula | |
| parent | e1bd38a842a33f3e20b3f8f9d8a70b0912743358 (diff) | |
| download | homebrew-302e31b36b9078f441fb6025c7a323532289313c.tar.bz2 | |
dupx 0.1
Dupx is a unix utility to redirect standard output/input/error
of an already running process.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/dupx.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/dupx.rb b/Library/Formula/dupx.rb new file mode 100644 index 000000000..9f22448ac --- /dev/null +++ b/Library/Formula/dupx.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Dupx < Formula + homepage 'http://www.isi.edu/~yuri/dupx/' + url 'http://www.isi.edu/~yuri/dupx/dupx-0.1.tar.gz' + md5 'e9231c08328e6a04ba76fc4e69732a6c' + + def install + system "./configure", "--prefix=#{prefix}" + system "make install" + end +end |
