homebrew-core/Formula/patchutils.rb
Joe Auricchio de12f3ee55 New formula for patchutils.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Removed commented-out code
* Removed unrecognized configure switch
2010-03-29 13:34:53 -07:00

12 lines
355 B
Ruby
Executable file

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