usbmuxd v1.0.0-rc2

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.
master
Dan Walters 2009-11-29 14:02:09 -03:00 committed by Max Howell
parent 2eacd177ba
commit c334c5d01b
1 changed files with 17 additions and 0 deletions

17
Formula/usbmuxd.rb Normal file
View File

@ -0,0 +1,17 @@
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