@@ -4,6 +4,7 @@ class TigerVnc < Formula
4
4
url "https://github.com/TigerVNC/tigervnc/archive/refs/tags/v1.14.1.tar.gz"
5
5
sha256 "579d0d04eb5b806d240e99a3c756b38936859e6f7db2f4af0d5656cc9a989d7c"
6
6
license "GPL-2.0-or-later"
7
+ revision 1
7
8
8
9
# Tags with a 90+ patch are unstable (e.g., the 1.9.90 tag is used for the
9
10
# 1.10.0 beta release) and this regex should only match the stable versions.
@@ -13,16 +14,16 @@ class TigerVnc < Formula
13
14
end
14
15
15
16
bottle do
16
- sha256 cellar : :any , arm64_sequoia : "160d047fc18c4f0d6e3248b891af26eedaadb399dfbab8cdfa22fd38381da2a5 "
17
- sha256 cellar : :any , arm64_sonoma : "394baefd26256c2a60d8473df54c3dcd2f9fd622390978bc42f66b167e61754b "
18
- sha256 cellar : :any , arm64_ventura : "e3dc4bd4028728591444dff08dcefa89bd2feccd8809e87b113acd308e84e291 "
19
- sha256 cellar : :any , sonoma : "8a72bcc982e92fb1df9425096f1e2ee7a3482518d0c51f1b52026dcd900fb7e9 "
20
- sha256 cellar : :any , ventura : "75049c896f1ca55cf17c9dddb35ddc8b2145387cd6584808da08ae20b1c2cd37 "
21
- sha256 x86_64_linux : "f2d19f4ff08c3bdbd5564ac5fe95d86efd2262c67b806411fc79e8860c87ea4e "
17
+ sha256 cellar : :any , arm64_sequoia : "7bc176a2d61c328fb349c89517136f824ba6a24e8bd1ce2742212b0a72779136 "
18
+ sha256 cellar : :any , arm64_sonoma : "7cf35ae52dae8555f601816857569539b6f4a4567d0430aca2069ffd064afa30 "
19
+ sha256 cellar : :any , arm64_ventura : "d3a0850c956e85032de86105e5f41e4b9d0a284ac459325787689f9a0f1620f8 "
20
+ sha256 cellar : :any , sonoma : "0d423088741028380b8ac0e6afb22e83820f8551d6eeea5c46a68c4b04f62c2d "
21
+ sha256 cellar : :any , ventura : "9276bf7e39d26bd7822f00b894e36a59851d201c60f478d2404636da226736d5 "
22
+ sha256 x86_64_linux : "7387518d8ad605dd07089fdb78ac5894aa3c9c15bd763d80458a3a907e74cba3 "
22
23
end
23
24
24
25
depends_on "cmake" => :build
25
- depends_on "fltk"
26
+ depends_on "fltk@1.3 "
26
27
depends_on "gettext"
27
28
depends_on "gmp"
28
29
depends_on "gnutls"
@@ -49,13 +50,13 @@ class TigerVnc < Formula
49
50
50
51
def install
51
52
turbo = Formula [ "jpeg-turbo" ]
52
- args = std_cmake_args + %W[
53
+ args = %W[
53
54
-DJPEG_INCLUDE_DIR=#{ turbo . include }
54
55
-DJPEG_LIBRARY=#{ turbo . lib } /#{ shared_library ( "libjpeg" ) }
55
- .
56
56
]
57
- system "cmake" , *args
58
- system "make" , "install"
57
+ system "cmake" , "-S" , "." , "-B" , "build" , *args , *std_cmake_args
58
+ system "cmake" , "--build" , "build"
59
+ system "cmake" , "--install" , "build"
59
60
end
60
61
61
62
test do
0 commit comments