homebrew-core/Formula/gphoto2.rb

21 lines
538 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Gphoto2 < Formula
2011-08-14 03:41:29 +00:00
url 'http://downloads.sourceforge.net/project/gphoto/gphoto/2.4.11/gphoto2-2.4.11.tar.bz2'
homepage 'http://gphoto.org/'
2011-08-14 03:41:29 +00:00
md5 '2635075f702b40eb2e95a80658bd4773'
depends_on 'pkg-config' => :build
depends_on 'jpeg'
depends_on 'libgphoto2'
depends_on 'popt'
depends_on 'readline'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--without-aalib"
system "make install"
end
end