aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ios-webkit-debug-proxy.rb
blob: d357835ba40acd989f0ec69b602ea09e58a155d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class IosWebkitDebugProxy < Formula
  homepage 'https://github.com/google/ios-webkit-debug-proxy'
  url 'https://github.com/google/ios-webkit-debug-proxy/archive/1.4.tar.gz'
  sha1 'e6d882182fe2fd8f5827a9289545cc7e9ebb25e7'

  depends_on :macos => :lion
  depends_on "autoconf" => :build
  depends_on "automake" => :build
  depends_on 'libplist'
  depends_on 'usbmuxd'
  depends_on 'libimobiledevice'

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