Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vsberm committed Feb 20, 2019
0 parents commit d784bb1
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# homebrew-rayssh
33 changes: 33 additions & 0 deletions rayssh.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d784bb1

Please sign in to comment.