Created
November 19, 2010 19:33
-
-
Save codingisacopingstrategy/707008 to your computer and use it in GitHub Desktop.
Creating a Homebrew formula for the Zorba XSLT processor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#in progress | |
require 'formula' | |
class Zorba <Formula | |
url 'http://sourceforge.net/projects/zorba/files/zorba/1.4.0/zorba-1.4.0.tar.gz/download' | |
homepage 'http://www.zorba-xquery.com/' | |
md5 '' | |
version '1.4.0' | |
depends_on 'cmake' | |
depends_on 'libxml2' | |
depends_on 'icu4c' | |
depends_on 'xerces-c' | |
depends_on 'fop' | |
# curl 7.19 (> 7.12) tidy 15.3.6, libxslt 1.1.24 (=1.1.24) | |
# imap cclient needs a port | |
# http://www.zorba-xquery.com/doc/zorba-latest/zorba/html/build.html | |
def install | |
system "./configure", "--disable-debug", "--disable-dependency-tracking", | |
"--prefix=#{prefix}" | |
system "cmake . #{std_cmake_parameters}" | |
system "make install" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment