homebrew-core/Formula/ifuse.rb

25 lines
652 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Ifuse < Formula
homepage 'http://www.libimobiledevice.org/'
url 'https://github.com/libimobiledevice/ifuse/archive/1.1.3.tar.gz'
sha1 '447e9309fba1979be98ec83a4627b421dbd83032'
head 'http://cgit.sukimashita.com/ifuse.git'
2014-06-01 01:39:26 +00:00
depends_on "pkg-config" => :build
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "glib"
depends_on "libimobiledevice"
depends_on "osxfuse"
2013-09-20 15:15:56 +00:00
def install
system "./autogen.sh"
2013-01-28 04:51:08 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end