Skip to content

Commit

Permalink
feat: add gopy formula
Browse files Browse the repository at this point in the history
  • Loading branch information
nikaro committed Aug 8, 2024
1 parent 985ea17 commit e47117a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Formula/gopy.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
class Gopy < Formula
desc "CPython extension module generator from a go package"
homepage "https://github.com/go-python/gopy"
url "https://github.com/go-python/gopy/archive/refs/tags/v0.4.10.tar.gz"
sha256 "1af560db83e0e92b6d6b2d8e7f487a4d8de2628810a7ffb70a16e8ce7a362181"
license "BSD-3-Clause"

depends_on "go" => :build

def install
system "go", "build", *std_go_args
end
end

0 comments on commit e47117a

Please sign in to comment.