aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorRodd Zurcher2010-10-28 22:15:03 -0500
committerAdam Vandenberg2010-10-30 08:30:41 -0700
commit263064bd05aa526dac857fa6f149539abe561de2 (patch)
tree0ace90f36e1795335edfc1c1acd27b31a743c740 /Library
parent274758f677fbb62b3a8e2a77b8cdc717a6628f16 (diff)
downloadhomebrew-263064bd05aa526dac857fa6f149539abe561de2.tar.bz2
Add formula for quilt-0.48
Quilt allows you to easily manage large numbers of patches by keeping track of the changes each patch makes. Patches can be applied, un-applied, refreshed, and more. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/quilt.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/quilt.rb b/Library/Formula/quilt.rb
new file mode 100644
index 000000000..fccb931ae
--- /dev/null
+++ b/Library/Formula/quilt.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Quilt <Formula
+ homepage 'http://savannah.nongnu.org/projects/quilt'
+ url 'http://download.savannah.gnu.org/releases/quilt/quilt-0.48.tar.gz'
+ md5 'f77adda60039ffa753f3c584a286f12b'
+
+ depends_on 'gnu-sed'
+ depends_on 'coreutils'
+
+ def install
+ system "./configure", "--prefix=#{prefix}",
+ "--with-sed=#{HOMEBREW_PREFIX}/bin/gsed",
+ "--without-getopt"
+ system "make"
+ system "make install"
+ end
+end