homebrew-core/Formula/imagesnap.rb
Matthew Rothenberg 7d03e8b2fd imagesnap 0.2.5
Closes Homebrew/homebrew#8358.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-02 18:04:11 -05:00

12 lines
406 B
Ruby

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