homebrew-core/Formula/podofo.rb

25 lines
613 B
Ruby
Raw Normal View History

require 'formula'
class Podofo < Formula
homepage 'http://podofo.sourceforge.net'
2013-11-10 01:39:00 +00:00
url 'http://downloads.sourceforge.net/podofo/podofo-0.9.2.tar.gz'
sha1 '8a6e27e17e0ed9f12e1a999cff66eae8eb97a4bc'
depends_on 'cmake' => :build
2012-09-02 08:09:50 +00:00
depends_on :libpng
depends_on :freetype
depends_on :fontconfig
depends_on 'jpeg'
depends_on 'libtiff'
def install
2012-02-22 04:48:36 +00:00
mkdir 'build' do
# Build shared to simplify linking for other programs.
system "cmake", "..",
"-DPODOFO_BUILD_SHARED:BOOL=TRUE",
*std_cmake_args
system "make install"
end
end
end