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.5.1.tar.gz"
|
|
sha256 "d2f7151707f7a48d803e6e33f2923ec922c1c2857473a76db149ec3998fa557d"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "docker-machine-nfs.sh" => "docker-machine-nfs"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/docker-machine-nfs"
|
|
end
|
|
end
|