From b7dfef903398334077d7d0568a7ad9329c386134 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Tue, 15 Apr 2014 07:32:59 -0700 Subject: [PATCH] libopkele: add option for building docs Closes Homebrew/homebrew#24790. --- Formula/libopkele.rb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Formula/libopkele.rb b/Formula/libopkele.rb index fc70625941..83ad4162da 100644 --- a/Formula/libopkele.rb +++ b/Formula/libopkele.rb @@ -21,7 +21,10 @@ class Libopkele < Formula depends_on :libtool end - depends_on 'pkg-config' => :build + option "with-docs", "Build and install documentation" + + depends_on "pkg-config" => :build + depends_on "doxygen" => :build if build.with? "docs" def install system "./autogen.bash" if build.head? @@ -29,6 +32,11 @@ class Libopkele < Formula system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" - system "make install" + system "make", "install" + + if build.with? "docs" + system "make", "dox" + doc.install "doxydox/html" + end end end