35 lines
766 B
Ruby
35 lines
766 B
Ruby
class Ckan < Formula
|
|
desc "Comprehensive Kerbal Archive Network"
|
|
homepage "https://github.com/KSP-CKAN/CKAN/"
|
|
url "https://github.com/KSP-CKAN/CKAN/releases/download/v1.29.0/ckan.exe"
|
|
sha256 "3059dc24b265a04fe584453100aeabac7a60131c8de820b6e183fd1ccd9815b0"
|
|
license "MIT"
|
|
|
|
livecheck do
|
|
url "https://github.com/KSP-CKAN/CKAN/releases/latest"
|
|
regex(%r{href=.*?/tag/v?(\d+(?:\.\d+)+)["' >]}i)
|
|
end
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "mono"
|
|
|
|
def install
|
|
(libexec/"bin").install "ckan.exe"
|
|
(bin/"ckan").write <<~EOS
|
|
#!/bin/sh
|
|
exec mono "#{libexec}/bin/ckan.exe" "$@"
|
|
EOS
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
To use the CKAN GUI, install the ckan-app cask.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system bin/"ckan", "version"
|
|
end
|
|
end
|