homebrew-core/Formula/libwbxml.rb

17 lines
390 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libwbxml < Formula
homepage 'https://libwbxml.opensync.org/'
url 'http://sourceforge.net/projects/libwbxml/files/libwbxml/0.10.8/libwbxml-0.10.8.tar.gz'
sha1 '7704cdf5952ff6916158bbc76aa919ceb1780957'
depends_on 'cmake' => :build
def install
2012-02-22 04:48:36 +00:00
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make install"
end
end
end