homebrew-core/Formula/libslax.rb

62 lines
2.1 KiB
Ruby

class Libslax < Formula
desc "Implementation of the SLAX language (an XSLT alternative)"
homepage "http://www.libslax.org/"
url "https://github.com/Juniper/libslax/releases/download/0.22.1/libslax-0.22.1.tar.gz"
sha256 "4da6fb9886e50d75478d5ecc6868c90dae9d30ba7fc6e6d154fc92e6a48d9a95"
license "BSD-3-Clause"
livecheck do
url :stable
strategy :github_latest
end
bottle do
sha256 arm64_monterey: "2353ab7cd0966b2b227bb148a56296d596ce17891d602f5d5171d658aa725813"
sha256 arm64_big_sur: "c75218d25fb9630e5925ac7d83cf2a087fbad12d5cac213bc6c31193245b8e24"
sha256 monterey: "8a675ef7730a28f0179f368890940f407ee80f33f40af68634ebe0f20bb624a4"
sha256 big_sur: "e155b74af4563cfc2236a8c473154275118b978bf068329e941f3f6ecf58fea5"
sha256 catalina: "8b4506f10c72d75425ad849f17918a6574c349ebdf29ab740ad323811d1a4d02"
sha256 mojave: "5e024a22f8a47c0a11724d7543cd50141e8246b3669155cd734854ee74ec9d71"
sha256 high_sierra: "95e8b6bdc7010103110d8c7a92c33dd8e2e04228e037ca81c3a5cb69ea955ab2"
end
head do
url "https://github.com/Juniper/libslax.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
end
depends_on "libtool" => :build
depends_on "openssl@1.1"
conflicts_with "genometools", because: "both install `bin/gt`"
conflicts_with "libxi", because: "both install `libxi.a`"
def install
# configure remembers "-lcrypto" but not the link path.
ENV.append "LDFLAGS", "-L#{Formula["openssl@1.1"].opt_lib}"
ENV["SDKROOT"] = MacOS.sdk_path if MacOS.version <= :sierra
system "sh", "./bin/setup.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-libedit"
system "make", "install"
end
test do
(testpath/"hello.slax").write <<~EOS
version 1.0;
match / {
expr "Hello World!";
}
EOS
system "#{bin}/slaxproc", "--slax-to-xslt", "hello.slax", "hello.xslt"
assert_predicate testpath/"hello.xslt", :exist?
assert_match "<xsl:text>Hello World!</xsl:text>", File.read("hello.xslt")
end
end