Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View chrmoritz's full-sized avatar

Christian Moritz chrmoritz

  • Berlin, Germany
View GitHub Profile
require "formula"
class Starstructor < Formula
homepage "https://github.com/Starstructor/starstructor-cpp"
url "https://github.com/Starstructor/starstructor-cpp.git"
version "0.1"
depends_on "qt5"
skip_clean "starstructor.app"
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/node-0.10.26.mavericks.bottle.tar.gz
Already downloaded: /Library/Caches/Homebrew/node-0.10.26.mavericks.bottle.tar.gz
==> Verifying node-0.10.26.mavericks.bottle.tar.gz checksum
==> Pouring node-0.10.26.mavericks.bottle.tar.gz
tar xf /Library/Caches/Homebrew/node-0.10.26.mavericks.bottle.tar.gz
==> Caveats
Bash completion has been installed to:
/usr/local/etc/bash_completion.d
==> Finishing up
ln -s ../../Cellar/node/0.10.26/etc/bash_completion.d/npm npm
==> Pouring node-0.10.27.mavericks.bottle.tar.gz
==> Caveats
Bash completion has been installed to:
/usr/local/etc/bash_completion.d
Error: The `brew link` step did not complete successfully
The formula built, but is not symlinked into /usr/local
You can try again using:
brew link node
Possible conflicting files are:
require "formula"
# Note that x.even are stable releases, x.odd are devel releases
class Node < Formula
homepage "http://nodejs.org/"
url "http://nodejs.org/dist/v0.10.28/node-v0.10.28.tar.gz"
sha1 "ef08a75f6359a16e672cae684e0804ca7f4554b7"
bottle do
sha1 "0db92b18d10cb7505d7c885058e337aeb5e9741c" => :mavericks
@chrmoritz
chrmoritz / CubeBlocks.sbc
Created July 4, 2014 04:32
CubeBlocks.sbc modded to unlock atm hidden blocks
<?xml version="1.0"?>
<Definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<CubeBlocks>
<!-- Region ARMOR -->
<Definition>
<Id>
<TypeId>CubeBlock</TypeId>
<SubtypeId>LargeBlockArmorBlock</SubtypeId>
</Id>
<DisplayName>DisplayName_Block_LightArmorBlock</DisplayName>
This file has been truncated, but you can view the full file.
> Troxel@0.1.6 import E:\git\Troxel
> coffee tools/Importer.coffee
8027 blueprints remaining: equipment\ring\uncommon_physical_03.blueprint
8026 blueprints remaining: equipment\ring\uncommon_physical_01.blueprint
8025 blueprints remaining: equipment\ring\uncommon_physical_02.blueprint
8024 blueprints remaining: equipment\ring\uncommon_magic_03.blueprint
8023 blueprints remaining: equipment\ring\uncommon_laser_03.blueprint
8022 blueprints remaining: equipment\ring\uncommon_laser_02.blueprint
@chrmoritz
chrmoritz / failed_blueprints.md
Last active August 29, 2015 14:16
Failed blueprints during Troxel import
  • gm_prop_dungeon_largeblocker.blueprint
This file has been truncated, but you can view the full file.
> Troxel@0.1.6 import E:\git\Troxel
> coffee tools/Importer.coffee
13483 bp left: ui_questionmark.blueprint
13482 bp left: trackstraight.blueprint
13481 bp left: tracksplit.blueprint
13480 bp left: trackcorner.blueprint
invalid type value (r: 0, g: 255, b: 255), falling back to solid
invalid type value (r: 0, g: 255, b: 255), falling back to solid
@chrmoritz
chrmoritz / iojs3.rb
Created September 22, 2015 21:24
diff from iojs formula in core
class Iojs3 < Formula
desc "npm-compatible platform based on Node.js"
homepage "https://iojs.org/"
url "https://iojs.org/dist/v3.3.1/iojs-v3.3.1.tar.xz"
sha256 "c5b1a7117b75dca563f66c35ee65db6fc43e25a3756608ad2c4d60087314bd36"
option "with-debug", "Build with debugger hooks"
option "without-npm", "npm will not be installed"
option "without-completion", "npm bash completion will not be installed"
option "with-full-icu", "Build with full-icu (all locales) instead of small-icu (English only)"
@chrmoritz
chrmoritz / iojs3.rb
Created September 22, 2015 21:26
diff from node formula in core
class Iojs3 < Formula
desc "npm-compatible platform based on Node.js"
homepage "https://iojs.org/"
url "https://iojs.org/dist/v3.3.1/iojs-v3.3.1.tar.xz"
sha256 "c5b1a7117b75dca563f66c35ee65db6fc43e25a3756608ad2c4d60087314bd36"
option "with-debug", "Build with debugger hooks"
option "without-npm", "npm will not be installed"
option "without-completion", "npm bash completion will not be installed"
option "with-full-icu", "Build with full-icu (all locales) instead of small-icu (English only)"