blob: b931d434e60a229070705286c0289ad9e53f6ee2 (
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 Ideviceinstaller < Formula
homepage 'http://www.libimobiledevice.org/'
url 'http://www.libimobiledevice.org/downloads/ideviceinstaller-1.0.1.tar.bz2'
sha1 '7dd57f5d6d4466d8eca5d28fef3c22033b2af2da'
depends_on 'pkg-config' => :build
depends_on 'libimobiledevice'
depends_on 'libzip'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/ideviceinstaller --help |grep -q ^Usage"
end
end
|