homebrew-core/Formula/liblouis.rb

51 lines
1.7 KiB
Ruby

class Liblouis < Formula
desc "Open-source braille translator and back-translator"
homepage "http://liblouis.org"
license all_of: ["GPL-3.0-or-later", "LGPL-2.1-or-later"]
stable do
url "https://github.com/liblouis/liblouis/releases/download/v3.15.0/liblouis-3.15.0.tar.gz"
sha256 "3a381b132b140747e5fcd47354da6cf43959da2167f8bc598430bbac51224467"
depends_on "help2man" => :build
depends_on "pkg-config" => :build
depends_on "python@3.8"
end
bottle do
sha256 "083090c449d677552a01c4de0700a4925a99a0b6f176c3bbb934943ca19d97eb" => :catalina
sha256 "ce90fe897fe1f42e83628f06f6d2bd2f492b29b82de02c7e7ee6f6cc69b22d72" => :mojave
sha256 "0a590166a59479efbe7419b04690a784f97f81ae983a91aea4cd983bd4ac9826" => :high_sierra
end
head do
url "https://github.com/liblouis/liblouis.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "help2man" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
depends_on "python@3.8"
end
def install
system "./autogen.sh" if build.head?
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make"
system "make", "check"
system "make", "install"
cd "python" do
system "python3", *Language::Python.setup_install_args(prefix)
end
mkdir "#{prefix}/tools"
mv "#{bin}/lou_maketable", "#{prefix}/tools/", force: true
mv "#{bin}/lou_maketable.d", "#{prefix}/tools/", force: true
end
test do
o, = Open3.capture2(bin/"lou_translate", "unicode.dis,en-us-g2.ctb", stdin_data: "42")
assert_equal o, "⠼⠙⠃"
end
end