homebrew-core/Formula/iodine.rb
Filippo Valsorda dca322949f iodine: add patch for Mountain Lion compatibility
Remove failing inreplaces.

This applies the e1e438497a83dbe6800212a0e5cb632907d1b3d9 patch by
@zschoche for Mountain Lion compatibility. It has gone unheard upstream
yarrick/iodine#1 and iodine does not work on 10.8 without.

Closes Homebrew/homebrew#16736.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-12-24 22:02:57 -06:00

16 lines
453 B
Ruby

require 'formula'
class Iodine < Formula
url 'http://code.kryo.se/iodine/iodine-0.6.0-rc1.tar.gz'
homepage 'http://code.kryo.se/iodine/'
sha1 '4fa9a248b8a84df8a727a5d749e669e58136edca'
def patches
# 10.8 compatibility; see https://github.com/yarrick/iodine/pull/1
"https://github.com/zschoche/iodine/commit/e1e438497a83dbe6800212a0e5cb632907d1b3d9.patch"
end
def install
system "make", "install", "prefix=#{prefix}"
end
end