59 lines
2.8 KiB
Ruby
59 lines
2.8 KiB
Ruby
class Geomview < Formula
|
|
desc "Interactive 3D viewing program"
|
|
homepage "http://www.geomview.org"
|
|
url "https://deb.debian.org/debian/pool/main/g/geomview/geomview_1.9.5.orig.tar.gz"
|
|
mirror "https://downloads.sourceforge.net/project/geomview/geomview/1.9.5/geomview-1.9.5.tar.gz"
|
|
sha256 "67edb3005a22ed2bf06f0790303ee3f523011ba069c10db8aef263ac1a1b02c0"
|
|
license "LGPL-2.1-only"
|
|
revision 2
|
|
|
|
livecheck do
|
|
url "https://deb.debian.org/debian/pool/main/g/geomview/"
|
|
regex(/href=.*?geomview[._-]v?(\d+(?:\.\d+)+)(?:\.orig)?\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_ventura: "a427349c7f4ab1b887d3c3370a85b8c2bd01a1c38ed40ac4a8a90b7521339f98"
|
|
sha256 arm64_monterey: "171b71c0d54b089d996a04f0a0febeea6d0cfdadc25d96c83cc30824db5c36ce"
|
|
sha256 arm64_big_sur: "d425aa4b27f1d1ba8b02c8b5b907b9d7fd5f2bbef8d8e67d1d616a51913a9b70"
|
|
sha256 ventura: "95e6d434f3176020ae4d59a74d514df63f1bb361dfb092396c16aba2bccaa492"
|
|
sha256 monterey: "16501f149c43a7875f49f90b1c419c982d927a74e06a2624e31b12d91cd45dd8"
|
|
sha256 big_sur: "5b32a3b889e22a91b57549a11fc2d841c773d1f843886d5d42c003bb8797b0e0"
|
|
sha256 catalina: "8fcdf484eb6699c2f4c5bc46dec876ba9b4439d39a2dcc6342f63eec019decf4"
|
|
sha256 mojave: "ff34b05281e51f09386f1c1ae150ec0fee0d1c8c7afe74a63fec22c7add9285c"
|
|
sha256 high_sierra: "8c92e54836c38a56cbb22a0488dab7665d11fd44d918956a899bb4ef2175d338"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "ff5407aa61b9c6efadf39cc5831c02b45f924c3926ed9cd1475be4ed81c12796"
|
|
end
|
|
|
|
depends_on "libice"
|
|
depends_on "libsm"
|
|
depends_on "libx11"
|
|
depends_on "libxext"
|
|
depends_on "libxmu"
|
|
depends_on "libxt"
|
|
depends_on "mesa"
|
|
depends_on "mesa-glu"
|
|
depends_on "openmotif"
|
|
|
|
# Fix -flat_namespace being used on Big Sur and later.
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/03cf8088210822aa2c1ab544ed58ea04c897d9c4/libtool/configure-pre-0.4.2.418-big_sur.diff"
|
|
sha256 "83af02f2aa2b746bb7225872cab29a253264be49db0ecebb12f841562d9a2923"
|
|
end
|
|
|
|
def install
|
|
# Work around for build error due to `finite`/`isfinite` detection on macOS.
|
|
# ../../../../include/porting.h:68:19: error: expected identifier or '('
|
|
# static inline int finite(double v)
|
|
ENV["ac_cv_func_finite"] = "yes" if OS.mac? && Hardware::CPU.arm?
|
|
|
|
system "./configure", *std_configure_args, "--disable-silent-rules"
|
|
system "make", "install"
|
|
(bin/"hvectext").unlink
|
|
end
|
|
|
|
test do
|
|
assert_match "Error: Can't open display:", shell_output("DISPLAY= #{bin}/geomview 2>&1", 1)
|
|
end
|
|
end
|