Skip to content

Commit ad8fa7b

Browse files
authored
Merge pull request #249870 from Homebrew/rlwrap_libptytty
rlwrap: use libptytty
2 parents fa7bd98 + 6450e00 commit ad8fa7b

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

Formula/r/rlwrap.rb

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ class Rlwrap < Formula
44
url "https://github.com/hanslub42/rlwrap/archive/refs/tags/v0.47.1.tar.gz"
55
sha256 "944bc0e4812e61b2b7c4cd17b1b37b41325deffa0b84192aff8c0eace1a5da4c"
66
license "GPL-2.0-or-later"
7+
revision 1
78
head "https://github.com/hanslub42/rlwrap.git", branch: "master"
89

910
livecheck do
@@ -12,25 +13,22 @@ class Rlwrap < Formula
1213
end
1314

1415
bottle do
15-
sha256 arm64_tahoe: "cbcb757ff9be891e15c6f7d0cdae25a65edd84356cc0c2762d56a73d2fca45d8"
16-
sha256 arm64_sequoia: "76c14a9650e463ea35aefd0e09e459bf675656d90e413266be8633dbc6a3bb6f"
17-
sha256 arm64_sonoma: "9c9130f7da8da6d0e0208a3ae152e240d0ec49402c96833548e01fc3ebde26f6"
18-
sha256 arm64_ventura: "173c7b946ed5a9b59f4bfe77ffedd5d2f8c3319dc23fba0213c2e6864833a2bc"
19-
sha256 sonoma: "04e97f15e237b8bba5503e37ae068fea5e19bc270212dc5fd90d2d3b998f4ae4"
20-
sha256 ventura: "0ef750a1247f43d8781c95f655f8ece83e2f401f41dca53b6421b2b80d99f8d5"
21-
sha256 arm64_linux: "4dc693d78c25778cb5bb669c0792fbbbede81d1779691de52e19eed3b9c6b36b"
22-
sha256 x86_64_linux: "d8872767bff66175ea7bdcc9654489ad2f285a6a8f4e7fb32f237f575ec93e59"
16+
sha256 arm64_tahoe: "eb09e4aefabca75272dab10c2c5bec2328143eaf0f64079a521a07f96e6e9d9d"
17+
sha256 arm64_sequoia: "4531f405efca8347511d5202d49ceb050a84a746b79d5ca8eb7ea1812b7c247e"
18+
sha256 arm64_sonoma: "76f2e2a11cf4e3e808cceaa10de99b81080d8b01f73e3a138cefbe34d3bcfee3"
19+
sha256 sonoma: "07017b0f2997ee3366f699446870544d6cbb0e5480761ab0c5952f88ffd16c80"
20+
sha256 arm64_linux: "bbad3c2af39b1a2bef447a61dd934f3d1924f9bc361cebbac97ef866695b38b7"
21+
sha256 x86_64_linux: "eb12a645ba61447c3ab939a989805565007fcfbb2975e04818b3a59c373dbe0d"
2322
end
2423

2524
depends_on "autoconf" => :build
2625
depends_on "automake" => :build
26+
depends_on "libptytty"
2727
depends_on "readline"
2828

2929
def install
3030
system "autoreconf", "--force", "--install", "--verbose"
31-
32-
# TODO: add `libptytty` as a formula, there is a fallback for now
33-
system "./configure", "--without-libptytty", *std_configure_args
31+
system "./configure", *std_configure_args
3432
system "make", "install"
3533
end
3634

0 commit comments

Comments
 (0)