diff options
| author | Jack Nagel | 2014-03-17 22:44:46 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-03-17 22:47:05 -0500 | 
| commit | 179277b5290c8e9aaec16cdefd68dd8d3deaf4d5 (patch) | |
| tree | 7735ae2172b78f26d31c8ea60cc93a07479f4b60 | |
| parent | 2911ec24c0e4d7b42f09f0778fd407e8be36767a (diff) | |
| download | homebrew-179277b5290c8e9aaec16cdefd68dd8d3deaf4d5.tar.bz2 | |
afflib: use patch DSL
| -rw-r--r-- | Library/Formula/afflib.rb | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/Library/Formula/afflib.rb b/Library/Formula/afflib.rb index bfb94dfa0..cb6377253 100644 --- a/Library/Formula/afflib.rb +++ b/Library/Formula/afflib.rb @@ -11,11 +11,9 @@ class Afflib < Formula    depends_on 'expat' => :optional    depends_on 'osxfuse' => :optional -  def patches -    # This patch fixes a bug reported upstream over there -    # https://github.com/simsong/AFFLIBv3/issues/4 -    DATA -  end +  # This patch fixes a bug reported upstream over there +  # https://github.com/simsong/AFFLIBv3/issues/4 +  patch :DATA    def install      system "sh bootstrap.sh" | 
