From aeced0cbeedc276f25ddf4617760ff7034b75464 Mon Sep 17 00:00:00 2001 From: Giovanni d'Amelio Date: Sat, 16 Mar 2024 15:06:39 -0700 Subject: [PATCH] Remove brew formula --- little_boxes.rb | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 little_boxes.rb diff --git a/little_boxes.rb b/little_boxes.rb deleted file mode 100644 index 297b897f..00000000 --- a/little_boxes.rb +++ /dev/null @@ -1,19 +0,0 @@ -class LittleBoxes < Formula - desc "Adds boxes around stdin. Optionally adds a title" - homepage "https://github.com/giodamelio/little_boxes" - url "https://github.com/giodamelio/little_boxes/archive/1.6.0.tar.gz" - sha256 "c686d3e347b4a2fdf8dfa3853bf6ca5e0b2f8d20c69fd24a234547e3cb002260" - head "https://github.com/giodamelio/little_boxes.git" - - depends_on "rust" => :build - - def install - system "cargo", "install", "--root", prefix, - "--path", "." - man1.install "little_boxes.1" - end - - test do - system "#{bin}/little_boxes", "-V" - end -end