2010-02-17 19:47:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Imagesnap < Formula
|
2010-02-17 19:47:07 +00:00
|
|
|
homepage 'http://iharder.sourceforge.net/current/macosx/imagesnap/'
|
2013-01-28 04:52:51 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/iharder/imagesnap/ImageSnap-v0.2.5.tgz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '3761bada4fddc92df0c61750d5ead24cf944c469'
|
2010-02-17 19:47:07 +00:00
|
|
|
|
2013-01-28 04:52:51 +00:00
|
|
|
depends_on :xcode
|
2012-08-24 20:40:24 +00:00
|
|
|
|
2010-02-17 19:47:07 +00:00
|
|
|
def install
|
2012-09-04 23:15:31 +00:00
|
|
|
system "xcodebuild -project ImageSnap.xcodeproj SYMROOT=build -sdk macosx#{MacOS.version}"
|
2010-02-17 19:47:07 +00:00
|
|
|
bin.install "build/Release/imagesnap"
|
|
|
|
end
|
|
|
|
end
|