homebrew-core/Formula/usbmuxd.rb
Dan Walters c334c5d01b 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.
2009-12-05 17:00:09 +00:00

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