c334c5d01b
USB Multiplex Daemon. This bit of software is in charge of talking to your iPhone or iPod Touch over USB and coordinating access to its services by other applications.
17 lines
386 B
Ruby
17 lines
386 B
Ruby
require 'formula'
|
|
|
|
class Usbmuxd <Formula
|
|
url 'http://marcansoft.com/uploads/usbmuxd/usbmuxd-1.0.0-rc2.tar.bz2'
|
|
homepage 'http://marcansoft.com/blog/iphonelinux/usbmuxd/'
|
|
md5 '996d5ec74fafae9d2fca0c0d7a75ba71'
|
|
|
|
depends_on 'libusb'
|
|
depends_on 'cmake'
|
|
|
|
aka 'usb-multiplex-daemon'
|
|
|
|
def install
|
|
system "cmake . #{std_cmake_parameters}"
|
|
system "make install"
|
|
end
|
|
end
|