63 lines
2.5 KiB
Ruby
63 lines
2.5 KiB
Ruby
class Ploticus < Formula
|
|
desc "Scriptable plotting and graphing utility"
|
|
homepage "https://ploticus.sourceforge.io/"
|
|
url "https://downloads.sourceforge.net/project/ploticus/ploticus/2.42/ploticus242_src.tar.gz"
|
|
sha256 "3f29e4b9f405203a93efec900e5816d9e1b4381821881e241c08cab7dd66e0b0"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 arm64_ventura: "07c219e6f16f0218d44236bc252ac69566859751a2f485e21f2058446aa552a1"
|
|
sha256 arm64_monterey: "01092932df498e7d7a50dd52ec5036e103999b3609ff73a4a86036d417da57dc"
|
|
sha256 arm64_big_sur: "3b0d37697feadd571e84831579e10d1e0e3180833794e8784a2e8a7b5205e7c6"
|
|
sha256 ventura: "70dc7caa237162f2feeb5e4149777350aa2ad2254070bde21619be0fa5334f1e"
|
|
sha256 monterey: "e56730299a267a423193a4a36750937d3637981e73517182cca73186ff7b5b29"
|
|
sha256 big_sur: "8b86736a916ccd6455e8fa3fa79234abae9e9c55e963a696d9c393ec97818aeb"
|
|
sha256 catalina: "5b23a77e8f83f384d8b3da9af8d1bd89832099a5dec99f1711a72f50a4d682fe"
|
|
sha256 mojave: "b9ba4732a13508d6aba81b81c31a71ca65543fbcda431d57263f28255072087f"
|
|
sha256 high_sierra: "bfdaab8cdaf7c0c97e02caea8fa79e76e7ac85704d21591ced4a59914b4c5c26"
|
|
sha256 sierra: "06456d2606a86782cd75ee63f67e738e7ce33271902d3f4e7807d2061c0a5f4a"
|
|
sha256 el_capitan: "088f4ba0eea75ed4b401f94331b70dd64e23f02fa0d95731fbaccf6904c8cea5"
|
|
sha256 x86_64_linux: "c7218f15936e3bc96796454d09612f99c8e8c5694b71d37af6625bbb3b254627"
|
|
end
|
|
|
|
depends_on "libpng"
|
|
|
|
def install
|
|
# Use alternate name because "pl" conflicts with macOS "pl" utility
|
|
args=["INSTALLBIN=#{bin}",
|
|
"EXE=ploticus"]
|
|
inreplace "src/pl.h", /#define\s+PREFABS_DIR\s+""/, "#define PREFABS_DIR \"#{pkgshare}\""
|
|
system "make", "-C", "src", *args
|
|
# Required because the Makefile assumes INSTALLBIN dir exists
|
|
bin.mkdir
|
|
system "make", "-C", "src", "install", *args
|
|
pkgshare.install Dir["prefabs/*"]
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
Ploticus prefabs have been installed to #{opt_pkgshare}
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match "ploticus 2.", shell_output("#{bin}/ploticus -version 2>&1", 1)
|
|
|
|
(testpath/"test.in").write <<~EOS
|
|
#proc areadef
|
|
rectangle: 1 1 4 2
|
|
xrange: 0 5
|
|
yrange: 0 100
|
|
|
|
#proc xaxis:
|
|
stubs: text
|
|
Africa
|
|
Americas
|
|
Asia
|
|
Europe,\\nAustralia,\\n& Pacific
|
|
EOS
|
|
system "#{bin}/ploticus", "-f", "test.in", "-png", "-o", "test.png"
|
|
assert_match "PNG image data", shell_output("file test.png")
|
|
end
|
|
end
|