blob: e308c3f6566d2c8d218a7fb057afa817c0a22628 (
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.2.tar.gz'
  sha1 'ba46e5964910d7ae42447836db1c5f1cd0e7de78'
  head 'https://github.com/gerard/ext4fuse.git'
  depends_on 'pkg-config' => :build
  depends_on 'fuse4x'
  def install
    system 'make'
    bin.install 'ext4fuse'
  end
end
  |