homebrew-core/Formula/ledger.rb

46 lines
1.4 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Ledger < Formula
homepage 'http://ledger-cli.org'
url 'http://ftp.newartisans.com/pub/ledger/ledger-2.6.3.tar.gz'
sha1 '5b8e7d8199acb116f13720a5a469fff1f14b4041'
2011-05-27 05:02:55 +00:00
head 'https://github.com/jwiegley/ledger.git', :branch => 'next'
option 'debug', 'Build with debugging symbols enabled'
option 'python', 'Enable Python support'
2012-09-03 21:00:00 +00:00
depends_on 'gettext'
depends_on 'boost'
depends_on 'mpfr'
depends_on 'gmp'
depends_on 'pcre'
depends_on 'expat'
depends_on 'cmake' if build.head?
depends_on 'libofx' => :optional unless build.head?
def install
# find Homebrew's libpcre
ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
2012-09-03 21:00:00 +00:00
if build.head?
args = [((build.include? 'debug') ? 'debug' : 'opt'), "make", "-j#{ENV.make_jobs}", "--output=build"]
args << '--python' if build.include? 'python'
system "./acprep", *args
system "cmake", "-D", "CMAKE_INSTALL_PREFIX=#{prefix}", "-P", "build/cmake_install.cmake"
2012-09-03 21:00:00 +00:00
else
args = []
if build.with? 'libofx'
args << "--enable-ofx"
# the libofx.h appears to have moved to a subdirectory
ENV.append 'CXXFLAGS', "-I#{Formula.factory('libofx').opt_prefix}/include/libofx"
end
2012-09-03 21:00:00 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", *args
system 'make'
ENV.deparallelize
system 'make install'
end
end
end