diff options
| author | Edward George | 2010-06-02 22:44:16 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-10 10:33:32 -0700 |
| commit | 939655706570a12f93fd3a4faae844b3159b3776 (patch) | |
| tree | 312c475e54cddb68065a2af3eec4c38e58a0b4b2 /Library | |
| parent | eadf75078902a367e5e519508b430a37974d6d3b (diff) | |
| download | homebrew-939655706570a12f93fd3a4faae844b3159b3776.tar.bz2 | |
Added formula: libimobiledevice 1.0.1
libimobiledevice is a software library that talks the protocols to
support iPhone®, iPod Touch® and iPad® devices on Linux.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libimobiledevice.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/libimobiledevice.rb b/Library/Formula/libimobiledevice.rb new file mode 100644 index 000000000..e9c9daec7 --- /dev/null +++ b/Library/Formula/libimobiledevice.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Libimobiledevice <Formula + url 'http://www.libimobiledevice.org/downloads/libimobiledevice-1.0.1.tar.bz2' + homepage 'http://www.libimobiledevice.org/' + md5 '684edcf0946f5a8db95bfcced7626dbe' + + depends_on 'pkg-config' + depends_on 'libtasn1' + depends_on 'usbmuxd' + depends_on 'libplist' + depends_on 'gnutls' + depends_on 'glib' + + def install + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--without-swig" + system "make install" + end +end |
