-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrayssh.rb
34 lines (32 loc) · 1.39 KB
/
rayssh.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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.4.tar.gz"
sha256 "4a9e5d08f447e88ae4dfd805132107dc59a212296e9a6049ee9d5eca93bd187d"
version "0.0.4"
# 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/raysync"
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