Created
May 22, 2012 21:44
-
-
Save mistydemeo/2771825 to your computer and use it in GitHub Desktop.
This file contains 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
def install | |
pwd = Dir.pwd | |
cd ".." do | |
mv pwd, "src" | |
mkdir pwd | |
mkdir pwd + "/build" | |
mv "src", pwd | |
end | |
#We only build creative tools (krita and karbon) | |
system "cmake ../src #{std_cmake_parameters} -DCREATIVEONLY=ON -DEIGEN2_INCLUDE_DIR=#{Formula.factory("eigeni2").include/"eigen2"}" | |
system "make install" # if this fails, try separate make/make install steps | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment