From d784bb1871a2928b8cedd2a8e97610fc617ec726 Mon Sep 17 00:00:00 2001 From: vsberm Date: Wed, 20 Feb 2019 13:27:59 +0800 Subject: [PATCH] first commit --- README.md | 1 + rayssh.rb | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 README.md create mode 100644 rayssh.rb diff --git a/README.md b/README.md new file mode 100644 index 0000000..b745fc2 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# homebrew-rayssh diff --git a/rayssh.rb b/rayssh.rb new file mode 100644 index 0000000..a092fee --- /dev/null +++ b/rayssh.rb @@ -0,0 +1,33 @@ +# Documentation: https://docs.brew.sh/Formula-Cookbook +# http://www.rubydoc.info/github/Homebrew/brew/master/Formula +# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! +class Rayssh < Formula + desc "rayssh transfer" + homepage "https://www.raysync.cn/" + url "https://raw.githubusercontent.com/vsberm/rayssh-release/master/macOS/rayssh-0.0.1.tar.gz" + sha256 "62a295ea7e88286ecbfe13b1eb30ba7db298e87c3716f64346bb8f417aee21b7" + # depends_on "cmake" => :build + + def install + # ENV.deparallelize # if your formula fails when building in parallel + # Remove unrecognized options if warned by configure + # system "cmake", ".", *std_cmake_args + bin.install "./bin/rayscp" + bin.install "./bin/rayssh" + bin.install "./bin/rayssh-keygen" + bin.install "./bin/rsync" + end + + test do + # `test do` will create, run in and delete a temporary directory. + # + # This test will fail and we won't accept that! For Homebrew/homebrew-core + # this will need to be a test that verifies the functionality of the + # software. Run the test with `brew test rayssh`. Options passed + # to `brew install` such as `--HEAD` also need to be provided to `brew test`. + # + # The installed folder is not in the path, so use the entire path to any + # executables being tested: `system "#{bin}/program", "do", "something"`. + system "false" + end +end \ No newline at end of file