49 lines
1.8 KiB
Ruby
49 lines
1.8 KiB
Ruby
class Podofo < Formula
|
|
desc "Library to work with the PDF file format"
|
|
homepage "https://podofo.sourceforge.io"
|
|
url "https://downloads.sourceforge.net/podofo/podofo-0.9.5.tar.gz"
|
|
sha256 "854981cb897ebc14bac854ea0f25305372261a48a205363fe1c61659ba7b5304"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "fea6db1ef03e7fe063ffc0db1359793a484f71b648399545f4e211a9c1a1e767" => :sierra
|
|
sha256 "6b41dacab35cc964f363b88b81b4bdfe09724d3d1fdc9603ef09fcb357cdf55f" => :el_capitan
|
|
sha256 "fefd08cd65f69149ebd3cb1e032e6f9e232d7ba22f766e378fa8a9848540a325" => :yosemite
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "libpng"
|
|
depends_on "freetype"
|
|
depends_on "fontconfig"
|
|
depends_on "jpeg"
|
|
depends_on "libtiff"
|
|
depends_on "openssl"
|
|
depends_on "libidn" => :optional
|
|
|
|
def install
|
|
args = std_cmake_args
|
|
|
|
# Build shared to simplify linking for other programs.
|
|
args << "-DPODOFO_BUILD_SHARED:BOOL=TRUE"
|
|
|
|
args << "-DFREETYPE_INCLUDE_DIR_FT2BUILD=#{Formula["freetype"].opt_include}/freetype2"
|
|
args << "-DFREETYPE_INCLUDE_DIR_FTHEADER=#{Formula["freetype"].opt_include}/freetype2/config/"
|
|
|
|
# podofo scoops out non-mandatory dependencies from system automatically.
|
|
# Build fails against multi-lua systems, even when direct path is passed to cmake.
|
|
# https://github.com/Homebrew/homebrew/issues/44026
|
|
# DomT4: Reported upstream 19/12/2015 to mailing list but not published yet.
|
|
# This seemingly unofficial hack doesn't work for libidn sadly.
|
|
args << "-DLUA_INCLUDE_DIR=FALSE" << "-DLUA_LIBRARIES=FALSE"
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
cp test_fixtures("test.pdf"), testpath
|
|
assert_match "500 x 800 pts", shell_output("#{bin}/podofopdfinfo test.pdf")
|
|
end
|
|
end
|