Skip to content

Commit

Permalink
ios-webkit-debug-proxy: fix style nits
Browse files Browse the repository at this point in the history
  • Loading branch information
DomT4 committed Jul 4, 2015
1 parent 8ad7540 commit aca6591
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions Formula/ios-webkit-debug-proxy.rb
@@ -1,10 +1,8 @@
require 'formula'

class IosWebkitDebugProxy < Formula
desc "DevTools proxy for iOS devices"
homepage 'https://github.com/google/ios-webkit-debug-proxy'
url 'https://github.com/google/ios-webkit-debug-proxy/archive/1.5.tar.gz'
sha1 '34f6325200700ccbd8c190b0c6835beb1396303d'
homepage "https://github.com/google/ios-webkit-debug-proxy"
url "https://github.com/google/ios-webkit-debug-proxy/archive/1.5.tar.gz"
sha1 "34f6325200700ccbd8c190b0c6835beb1396303d"

bottle do
cellar :any
Expand All @@ -16,16 +14,16 @@ class IosWebkitDebugProxy < Formula
depends_on :macos => :lion
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on 'libtool' => :build
depends_on 'pkg-config' => :build
depends_on 'libplist'
depends_on 'usbmuxd'
depends_on 'libimobiledevice'
depends_on "libtool" => :build
depends_on "pkg-config" => :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"
system "make", "install"
end
end

0 comments on commit aca6591

Please sign in to comment.