aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/imagesnap.rb
blob: b9f1dbd43d1184872b0f9844bb1c2fb168a6e590 (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 SYMROOT=build -sdk macosx#{MACOS_VERSION}"
    bin.install "build/Release/imagesnap"
  end
end