Skip to content

Commit

Permalink
Create durdraw.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmyczko authored Jun 16, 2024
1 parent f8e416e commit f13519d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions durdraw.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
class Durdraw < Formula
desc "Versatile ASCII and ANSI Art text editor for drawing in terminal"
homepage "https://durdraw.org"
url "https://github.com/cmang/durdraw/archive/refs/tags/0.27.1.tar.gz"
sha256 "809431fc3dded211a59b624397f6cd490aa0568a965808eed8dd76dbb92b5611"

depends_on "python3"

def install
system "./configure", "--this-and-that",
"--render-a-duck",
system "make", "install"
end

test do
system "#{bin}/durdraw", "-h"
end
end

0 comments on commit f13519d

Please sign in to comment.