homebrew-core/Formula/ext4fuse.rb
Johnathan Conley 8ea40826b2 use new :osxfuse symbolic dependency
change formula to use :osxfuse symbolic dependency from Homebrew/homebrew#31975

Closes Homebrew/homebrew#32203.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-09-10 09:41:28 +01:00

17 lines
385 B
Ruby

require 'formula'
class Ext4fuse < Formula
homepage 'https://github.com/gerard/ext4fuse'
url 'https://github.com/gerard/ext4fuse/archive/v0.1.3.tar.gz'
sha1 '87d436581fea73273d83779021a7a3c0158d7c41'
head 'https://github.com/gerard/ext4fuse.git'
depends_on 'pkg-config' => :build
depends_on :osxfuse
def install
system 'make'
bin.install 'ext4fuse'
end
end