284b58f49b
ImageSnap is a Public Domain command-line tool that lets you capture still images from an iSight or other video source. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Update to 0.2.4 * Build from source
12 lines
363 B
Ruby
12 lines
363 B
Ruby
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
|