aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/imagesnap.rb
blob: 66ac1e4120938e09c340cceccc3306634671a1a3 (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.5.tgz'
  homepage 'http://iharder.sourceforge.net/current/macosx/imagesnap/'
  md5 '32e341f059a91703816d8aa9b87fb1e4'

  def install
    system "xcodebuild -project ImageSnap.xcodeproj SYMROOT=build -sdk macosx#{MACOS_VERSION}"
    bin.install "build/Release/imagesnap"
  end
end