7904cfb702
Run make in order to properly detect which version of XCode is installed Run make install instead of bin.install Update to latest version which resolves the multiple symlink layers issue. Fixed head to use svn. Previous head didn't work (just downloaded a single html file). Closes Homebrew/homebrew#14143. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
14 lines
374 B
Ruby
14 lines
374 B
Ruby
require 'formula'
|
|
|
|
class Fmdiff < Formula
|
|
homepage 'http://www.defraine.net/~brunod/fmdiff/'
|
|
url 'http://bruno.defraine.net/fmdiff/fmscripts-20120813.tar.gz'
|
|
sha1 'a5342820893f61b29e1060527cc722ef51574911'
|
|
|
|
head 'http://soft.vub.ac.be/svn-gen/bdefrain/fmscripts/', :using => :svn
|
|
|
|
def install
|
|
system "make"
|
|
system "make", "DESTDIR=#{bin}", "install"
|
|
end
|
|
end
|