24f468f152
Closes #6250. Signed-off-by: Tomasz Pajor <tomek@polishgeeks.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.4.0.tar.gz"
|
|
sha256 "f2354ecb4f3216144a156f4f3d128b503417755ed784e93edc709b7b974fc20e"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "docker-machine-nfs.sh" => "docker-machine-nfs"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/docker-machine-nfs"
|
|
end
|
|
end
|