Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jimtcl 0.83 #182751

Merged
merged 2 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1263,6 +1263,7 @@ jetty
jetty-runner
jfrog-cli
jhipster
jimtcl
jj
jlog
jmeter
Expand Down
20 changes: 10 additions & 10 deletions Formula/j/jimtcl.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Jimtcl < Formula
desc "Small footprint implementation of Tcl"
homepage "https://jim.tcl.tk/index.html"
url "https://github.com/msteveb/jimtcl/archive/refs/tags/0.82.tar.gz"
sha256 "e8af929b815e4d30e54ff116b2b933e56c00a02b9110529d1a58660b2469aea7"
url "https://github.com/msteveb/jimtcl/archive/refs/tags/0.83.tar.gz"
sha256 "6f2df00009f5ac4ad654c1ae1d2f8ed18191de38d1f5a88a54ea99cc16936686"
license "BSD-2-Clause"

bottle do
Expand All @@ -23,19 +23,19 @@ class Jimtcl < Formula
uses_from_macos "sqlite"
uses_from_macos "zlib"

# patch to include `stdio.h``
patch do
url "https://github.com/msteveb/jimtcl/commit/35e0e1f9b1f018666e5170a35366c5fc3b97309c.patch?full_index=1"
sha256 "50f66a70d130c578f57d9569b62cf7071f7a3a285ca15efefd3485fa385469ba"
end

def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--full",
system "./configure", "--disable-silent-rules",
"--with-ext=readline,rlprompt,sqlite3",
"--shared",
"--docdir=#{doc}",
"--maintainer",
"--math",
"--ssl",
"--utf8"
*std_configure_args
system "make"
system "make", "install"
pkgshare.install Dir["examples*"]
Expand Down
Loading