-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsoftnet.rb
33 lines (28 loc) · 877 Bytes
/
softnet.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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Softnet < Formula
desc "Software networking with isolation for Tart"
homepage "https://github.com/cirruslabs/softnet"
version "0.13.0"
depends_on :macos
if Hardware::CPU.intel?
url "https://github.com/cirruslabs/softnet/releases/download/0.13.0/softnet-amd64.tar.gz"
sha256 "90ffd0ec4daa97b8a09116d1a2172e25d916327aae480f2c25cc9a05e1a7ac20"
def install
bin.install "softnet"
end
end
if Hardware::CPU.arm?
url "https://github.com/cirruslabs/softnet/releases/download/0.13.0/softnet-arm64.tar.gz"
sha256 "93f5cd3fc213a61d00ff114989c1125398d531b79d0c50446589fe7e89014dc9"
def install
bin.install "softnet"
end
end
def caveats
<<~EOS
See the Github repository for more information
EOS
end
end