blob: c0736361cb614c002ebe0728b62b488358f72fa9 (
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
25
26
27
28
29
30
|
require 'formula'
class Usbmuxd < Formula
homepage 'http://marcansoft.com/blog/iphonelinux/usbmuxd/'
url 'http://www.libimobiledevice.org/downloads/usbmuxd-1.0.8.tar.bz2'
md5 '4b33cc78e479e0f9a6745f9b9a8b60a8'
head 'http://cgit.sukimashita.com/usbmuxd.git'
depends_on 'cmake' => :build
depends_on 'pkg-config' => :build
depends_on 'libusb'
depends_on 'libplist'
def install
libusb = Formula.factory 'libusb'
inreplace 'Modules/VersionTag.cmake', '"sh"', '"bash"'
# The CMake scripts responsible for locating libusb headers are broken. So,
# we explicitly point the build script at the proper directory.
mkdir 'build' do
system "cmake", "..",
"-DLIB_SUFFIX=",
"-DUSB_INCLUDE_DIR=#{libusb.include.children.first}",
*std_cmake_args
system 'make install'
end
end
end
|