aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/patchutils.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/patchutils.rb')
-rwxr-xr-xLibrary/Formula/patchutils.rb12
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