aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ifuse.rb
blob: 33b3f98a310f02dfd2cd8159b76f3b22e94d7060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'formula'

class Ifuse < Formula
  homepage 'http://www.libimobiledevice.org/'
  url 'https://github.com/libimobiledevice/ifuse/archive/1.1.3.tar.gz'
  sha1 '447e9309fba1979be98ec83a4627b421dbd83032'

  head 'http://cgit.sukimashita.com/ifuse.git'

  depends_on 'pkg-config' => :build
  depends_on :autoconf
  depends_on :automake
  depends_on :libtool
  depends_on 'glib'
  depends_on 'libimobiledevice'
  depends_on 'osxfuse'

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