mirror of
https://github.com/gromgit/homebrew-fuse.git
synced 2025-12-08 09:11:37 +00:00
bindfs-mac 1.17.7
Disables linking to /Library/Filesystems which requires root. Unfortunately, this disables `mount -t bindfs` and /etc/fstab support. Closes #69. Signed-off-by: Adrian Ho <215702+gromgit@users.noreply.github.com>
This commit is contained in:
parent
8b5e9d57ea
commit
1bf44dea56
1 changed files with 6 additions and 15 deletions
|
|
@ -3,8 +3,8 @@ require_relative "../require/macfuse"
|
||||||
class BindfsMac < Formula
|
class BindfsMac < Formula
|
||||||
desc "FUSE file system for mounting to another location"
|
desc "FUSE file system for mounting to another location"
|
||||||
homepage "https://bindfs.org/"
|
homepage "https://bindfs.org/"
|
||||||
url "https://bindfs.org/downloads/bindfs-1.17.4.tar.gz"
|
url "https://bindfs.org/downloads/bindfs-1.17.7.tar.gz"
|
||||||
sha256 "6fd4af9ba2ec2bdb603ef8eea2a9d12db2e5fe9cbe52b8640b415734a59f3dcc"
|
sha256 "c0b060e94c3a231a1d4aa0bcf266ff189981a4ef38e42fbe23296a7d81719b7a"
|
||||||
license "GPL-2.0-or-later"
|
license "GPL-2.0-or-later"
|
||||||
|
|
||||||
bottle do
|
bottle do
|
||||||
|
|
@ -14,7 +14,8 @@ class BindfsMac < Formula
|
||||||
end
|
end
|
||||||
|
|
||||||
head do
|
head do
|
||||||
url "https://github.com/mpartel/bindfs.git"
|
url "https://github.com/mpartel/bindfs.git", branch: "master"
|
||||||
|
|
||||||
depends_on "autoconf" => :build
|
depends_on "autoconf" => :build
|
||||||
depends_on "automake" => :build
|
depends_on "automake" => :build
|
||||||
depends_on "libtool" => :build
|
depends_on "libtool" => :build
|
||||||
|
|
@ -26,18 +27,8 @@ class BindfsMac < Formula
|
||||||
|
|
||||||
def install
|
def install
|
||||||
setup_fuse
|
setup_fuse
|
||||||
args = %W[
|
configure = build.head? ? "./autogen.sh" : "./configure"
|
||||||
--disable-debug
|
system configure, "--disable-macos-fs-link", *std_configure_args
|
||||||
--disable-dependency-tracking
|
|
||||||
--prefix=#{prefix}
|
|
||||||
]
|
|
||||||
|
|
||||||
if build.head?
|
|
||||||
system "./autogen.sh", *args
|
|
||||||
else
|
|
||||||
system "./configure", *args
|
|
||||||
end
|
|
||||||
|
|
||||||
system "make", "install"
|
system "make", "install"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue