8dc451e3e2
Closes Homebrew/homebrew#20645. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
23 lines
681 B
Ruby
23 lines
681 B
Ruby
require 'formula'
|
|
|
|
class Libwbxml < Formula
|
|
homepage 'https://libwbxml.opensync.org/'
|
|
url 'http://downloads.sourceforge.net/project/libwbxml/libwbxml/0.11.2/libwbxml-0.11.2.tar.bz2'
|
|
sha1 '0b4f526709cac75c4b261666950bd935dda9f0d4'
|
|
|
|
option 'docs', 'Build the documentation with Doxygen and Graphviz'
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on 'wget' => :optional
|
|
depends_on 'doxygen' if build.include? 'docs'
|
|
depends_on 'graphviz' if build.include? 'docs'
|
|
|
|
def install
|
|
mkdir "build" do
|
|
args = std_cmake_args + %w[..]
|
|
args << '-DBUILD_DOCUMENTATION=ON' if build.include? 'docs'
|
|
system "cmake", *args
|
|
system "make install"
|
|
end
|
|
end
|
|
end
|