class Sile < Formula desc "Modern typesetting system inspired by TeX" homepage "http://www.sile-typesetter.org/" # This should return to using a release tarball when >0.9.4 is released. url "https://github.com/simoncozens/sile.git", :revision => "befcd813e1dd46f7af6d11ffd0b0ee525e8db1fc" version "0.9.5-alpha" revision 6 head "https://github.com/simoncozens/sile.git" bottle do cellar :any sha256 "b61fe2666c3f6ee368fd65961a87b39e8a4b8933f409b1e7f702df7c41dee727" => :high_sierra sha256 "b1af4d23ced07f8cd03ea77bffd65637fcc0f3105e1364d872cf976d05417ffa" => :sierra end # These three should return to being head-only when >0.9.4 is released. depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "luarocks" => :build depends_on "pkg-config" => :build depends_on "fontconfig" depends_on "harfbuzz" depends_on "icu4c" depends_on "libpng" depends_on "lua" resource "lpeg" do url "http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.1.tar.gz" sha256 "62d9f7a9ea3c1f215c77e0cadd8534c6ad9af0fb711c3f89188a8891c72f026b" end resource "lua-zlib" do url "https://github.com/brimworks/lua-zlib/archive/v1.2.tar.gz" sha256 "26b813ad39c94fc930b168c3418e2e746af3b2e80b92f94f306f6f954cc31e7d" end resource "luaexpat" do url "https://matthewwild.co.uk/projects/luaexpat/luaexpat-1.3.0.tar.gz" sha256 "d060397960d87b2c89cf490f330508b7def1a0677bdc120531c571609fc57dc3" end resource "luafilesystem" do url "https://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.tar.gz" sha256 "23b4883aeb4fb90b2d0f338659f33a631f9df7a7e67c54115775a77d4ac3cc59" end def install luapath = libexec/"vendor" ENV["LUA_PATH"] = "#{luapath}/share/lua/5.3/?.lua;;#{luapath}/share/lua/5.3/lxp/?.lua" ENV["LUA_CPATH"] = "#{luapath}/lib/lua/5.3/?.so" resources.each do |r| r.stage do if r.name == "lua-zlib" # https://github.com/brimworks/lua-zlib/commit/08d6251700965 mv "lua-zlib-1.1-0.rockspec", "lua-zlib-1.2-0.rockspec" system "luarocks", "make", "#{r.name}-#{r.version}-0.rockspec", "--tree=#{luapath}" else system "luarocks", "build", r.name, "--tree=#{luapath}" end end end system "./bootstrap.sh" # Should be head-only when >0.9.4 is released. system "./configure", "--disable-debug", "--disable-dependency-tracking", "--disable-silent-rules", "--with-lua=#{prefix}", "--prefix=#{prefix}" system "make" system "make", "install" (libexec/"bin").install bin/"sile" (bin/"sile").write <<~EOS #!/bin/bash export LUA_PATH="#{ENV["LUA_PATH"]}" export LUA_CPATH="#{ENV["LUA_CPATH"]}" "#{libexec}/bin/sile" "$@" EOS end test do assert_match "SILE #{version.to_s.match(/\d\.\d\.\d/)}", shell_output("#{bin}/sile --version") end end