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