freexl 1.0.2

Closes Homebrew/homebrew#42117.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Tomasz Pajor 2015-07-25 12:00:42 +02:00 committed by Dominyk Tiller
parent 44be7abc95
commit 409423b72e

View file

@ -1,12 +1,8 @@
class Freexl < Formula
desc "Library to extract data from Excel .xls files"
homepage "https://www.gaia-gis.it/fossil/freexl/index"
url "https://www.gaia-gis.it/gaia-sins/freexl-sources/freexl-1.0.1.tar.gz"
sha256 "df0127e1e23e9ac9a189c27880fb71207837e8cba93d21084356491c9934b89b"
option "without-check", "Skip compile-time make checks."
depends_on "doxygen" => [:optional, :build]
url "https://www.gaia-gis.it/gaia-sins/freexl-sources/freexl-1.0.2.tar.gz"
sha256 "b39a4814a0f53f5e09a9192c41e3e51bd658843f770399023a963eb064f6409d"
bottle do
cellar :any
@ -15,6 +11,10 @@ class Freexl < Formula
sha256 "53345a758e705765c6473327cb91c591ab50858144490973549f89750b31656d" => :mountain_lion
end
option "without-check", "Skip compile-time make checks."
depends_on "doxygen" => [:optional, :build]
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}",
"--disable-silent-rules"
@ -27,4 +27,8 @@ class Freexl < Formula
doc.install "html"
end
end
test do
assert File.exist? "#{lib}/libfreexl.a"
end
end