56555df7be
Closes #6142. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
16 lines
449 B
Ruby
16 lines
449 B
Ruby
class DockerMachineNfs < Formula
|
|
desc "Activates NFS on docker-machine"
|
|
homepage "https://github.com/adlogix/docker-machine-nfs"
|
|
url "https://github.com/adlogix/docker-machine-nfs/archive/0.3.1.tar.gz"
|
|
sha256 "260d47082e553a539145f026cc8a05db11f3c70355fd71ec819e33dcd3843e6e"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "docker-machine-nfs.sh" => "docker-machine-nfs"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/docker-machine-nfs"
|
|
end
|
|
end
|