blob: 003a184006a583ef046c6c9d129cb5f5d29a8fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Imagesnap <Formula
  url 'http://downloads.sourceforge.net/project/iharder/imagesnap/ImageSnap-v0.2.4.tgz'
  homepage 'http://iharder.sourceforge.net/current/macosx/imagesnap/'
  md5 'eddd65d04782cc7538c009cf8a6f7568'
  def install
    system "xcodebuild -project ImageSnap.xcodeproj"
    bin.install "build/Release/imagesnap"
  end
end
  |