blob: d8e6a338e78fb9b6a70bdf008caaa349326f8539 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | 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
 |