aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libgphoto2.rb
blob: 4cf71b8673d0aa60fcf29ca3149a14ffba58d202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Libgphoto2 <Formula
  url 'http://downloads.sourceforge.net/project/gphoto/libgphoto/2.4.8/libgphoto2-2.4.8.tar.bz2'
  homepage 'http://gphoto.org/'
  md5 '7753f17dff15702466337aab05209a71'

  depends_on 'pkg-config'
  depends_on 'libusb-compat'
  depends_on 'libexif' => :optional

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end