homebrew-core/Formula/iodine.rb
Steven Peters a649d9b4ec Use .diff instead of .patch for github commit sourced patches
This modifies multiple formulae in a single commit, replacing
the patch suffix with diff per Homebrew/homebrew#28315. I used the following
command:
~~~
sed -i -e 's@patch"$@diff"@' `grep -rlI 'commit.*patch"$' .`
~~~
The patch shasums are then computed using:
~~~
brew fetch --build-from-source `git st | sed -e 's@^ M@@'`
~~~
and manually updated.

Fixes Homebrew/homebrew#28315.
Fixes Homebrew/homebrew#28335.
Closes Homebrew/homebrew#28339.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-04-11 20:53:22 -05:00

17 lines
503 B
Ruby

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