diff options
| author | Joe Auricchio | 2010-01-03 13:01:14 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-03-29 13:34:53 -0700 |
| commit | c8a4708de386e5dd9717bc92089ec848c77644b3 (patch) | |
| tree | 1ad10f653000fae88ad2f64d66add0063cf12595 /Library/Formula/patchutils.rb | |
| parent | 9c33be2c8c58c0ba00020c2839ead5c3ada5bfe6 (diff) | |
| download | homebrew-c8a4708de386e5dd9717bc92089ec848c77644b3.tar.bz2 | |
New formula for patchutils.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Removed commented-out code
* Removed unrecognized configure switch
Diffstat (limited to 'Library/Formula/patchutils.rb')
| -rwxr-xr-x | Library/Formula/patchutils.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/patchutils.rb b/Library/Formula/patchutils.rb new file mode 100755 index 000000000..b785c8ecb --- /dev/null +++ b/Library/Formula/patchutils.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Patchutils <Formula + url 'http://cyberelk.net/tim/data/patchutils/stable/patchutils-0.3.1.tar.bz2' + homepage 'http://cyberelk.net/tim/software/patchutils/' + md5 '3fd9bca58a429fbbb1c2126f1b72aa23' + + def install + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
