-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplenti.rb
31 lines (26 loc) · 834 Bytes
/
plenti.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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Plenti < Formula
desc "Dead simple SSG with Svelte frontend and Go CLI."
homepage "https://plenti.co/"
version "0.7.16"
on_macos do
url "https://github.com/plentico/plenti/releases/download/v0.7.16/plenti_0.7.16_mac_64-bit.tar.gz"
sha256 "266b03d7972513d248cea775e3481dc7c5da065efa2ed3f4441106a6889a0614"
def install
bin.install "plenti"
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/plentico/plenti/releases/download/v0.7.16/plenti_0.7.16_linux_64-bit.tar.gz"
sha256 "ec7a3cd9e7257bec4c39215f2ceb441dc9e0985a78d9d5893884238bdbb5db78"
def install
bin.install "plenti"
end
end
end
end
end