c10t version 1.4 for OS X
The formula for c10t was recently updated to version 1.4.
To install c10t on your Mac, open your Terminal application and run the following commands;
brew update brew install c10t
The updated formula is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
require 'formula' # Minecraft cartography tool class C10t < Formula url 'https://github.com/udoprog/c10t/tarball/1.4' homepage 'https://github.com/udoprog/c10t' md5 '27ff806400602726e45679d444c4489d' depends_on 'cmake' => :build depends_on 'boost' def install inreplace 'src/global.hpp', "font.ttf", "#{prefix}/font.ttf" inreplace 'CMakeLists.txt', 'boost_thread', 'boost_thread-mt' inreplace 'test/CMakeLists.txt', 'boost_unit_test_framework', 'boost_unit_test_framework-mt' system "cmake . #{std_cmake_parameters}" system "make" bin.install "c10t" prefix.install "font.ttf" end end
This package, c10t, depends on;
cmake
boost
See which packages depend on c10t.









