Files
homebrew-software/Formula/notevc.rb
2025-11-10 16:50:11 -05:00

23 lines
675 B
Ruby

class Notevc < Formula
version "1.0.1"
desc "Version control for markdown files"
homepage "https://notevc.io"
if OS.mac?
url "https://github.com/darwincereska/notevc/releases/download/v#{version}/notevc-macos-arm64"
sha256 "bb1570676c2239117fc535ec18b7a6cceaaa2ad11cfe6f78640d0d6ac6af5c98"
elsif OS.linux?
url "https://github.com/darwincereska/notevc/releases/download/v#{version}/notevc-linux-x64"
sha256 "d7f296d405cf2a5dcc06de5aa6195eb9ac0a572c53cc1e121be8415726cd7c5b"
end
def install
if OS.mac?
bin.install "notevc-macos-arm64" => "notevc"
elsif OS.linux?
bin.install "notevc-linux-x64" => "notevc"
end
end
end