aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libwbxml.rb
blob: 0c82452bcff13827590dcfe1cee7d66e2e647d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

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
    mkdir "build" do
      system "cmake #{std_cmake_parameters} .."
      system "make install"
    end
  end
end