Added libwbxml v0.10.8

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Wes Oldenbeuving 2010-10-14 12:05:04 +02:00 committed by Adam Vandenberg
parent b2bbb296f1
commit d8fe6e667c
1 changed files with 17 additions and 0 deletions

17
Formula/libwbxml.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class Libwbxml <Formula
url 'http://sourceforge.net/projects/libwbxml/files/libwbxml/0.10.8/libwbxml-0.10.8.tar.gz'
homepage 'https://libwbxml.opensync.org/'
sha1 '7704cdf5952ff6916158bbc76aa919ceb1780957'
depends_on 'cmake' => :build
def install
mkdir "build"
Dir.chdir "build" do
system "cmake ../ #{std_cmake_parameters}"
system "make install"
end
end
end