sile 0.9.2 (new formula)
Closes Homebrew/homebrew#40893. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
0839705242
commit
c429cbede1
1 changed files with 45 additions and 0 deletions
45
Formula/sile.rb
Normal file
45
Formula/sile.rb
Normal file
|
@ -0,0 +1,45 @@
|
|||
class Sile < Formula
|
||||
desc "Modern typesetting system inspired by TeX"
|
||||
homepage "http://www.sile-typesetter.org/"
|
||||
url "https://github.com/simoncozens/sile/releases/download/v0.9.2/sile-0.9.2.tar.bz2"
|
||||
sha256 "2223582818df06daa4609cee40a81e8787085ad1795d4b2ce5edbe0663b74e18"
|
||||
|
||||
head do
|
||||
url "https://github.com/simoncozens/sile.git"
|
||||
depends_on "automake" => :build
|
||||
depends_on "autoconf" => :build
|
||||
depends_on "libtool" => :build
|
||||
end
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "harfbuzz"
|
||||
depends_on "fontconfig"
|
||||
depends_on "libpng"
|
||||
depends_on "freetype"
|
||||
depends_on "lua"
|
||||
|
||||
resource("simple.sil") do
|
||||
url "https://raw.githubusercontent.com/simoncozens/sile/v0.9.2/examples/simple.sil"
|
||||
sha256 "f788723cd984d98343c8f8dc1b93b8f769cea6894a28f9ba6e0bec6aebf78f92"
|
||||
end
|
||||
|
||||
def install
|
||||
system "luarocks-5.2", "install", "lpeg"
|
||||
system "luarocks-5.2", "install", "luaexpat"
|
||||
system "./bootstrap.sh" if build.head?
|
||||
system "./configure", "--disable-debug",
|
||||
"--disable-dependency-tracking",
|
||||
"--disable-silent-rules",
|
||||
"--with-lua=#{prefix}",
|
||||
"--prefix=#{prefix}"
|
||||
system "make"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
resource("simple.sil").stage do
|
||||
system "sile", "simple.sil"
|
||||
assert File.exist? "simple.pdf"
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue