Initial GPL-3.0 Release (v1.0.0)

This commit is contained in:
2026-01-22 21:26:07 -05:00
commit 36d3780bcc
23 changed files with 4087 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
class Sized < Formula
desc "A modern, fast, and concurrent disk usage analyzer"
homepage "https://gitea.speelman.ca/gamertan/sized"
url "https://gitea.speelman.ca/gamertan/sized/archive/v1.0.0.tar.gz"
sha256 "REPLACE_WITH_ACTUAL_SHA256" # Run `shasum -a 256 v0.2.0.tar.gz` after upload
license "GPL-3.0-only"
depends_on "rust" => :build
def install
system "cargo", "install", *std_cargo_args
# Install man page
man1.install "sized.1"
# Generate and install shell completions
generate_completions_from_executable(bin/"sized", "--completions")
end
test do
system "#{bin}/sized", "--version"
end
end