Skip to content

Instantly share code, notes, and snippets.

@dorentus
Forked from kyohsuke/mruby.rb
Created February 6, 2013 08:10
Show Gist options
  • Save dorentus/4721114 to your computer and use it in GitHub Desktop.
Save dorentus/4721114 to your computer and use it in GitHub Desktop.
require 'formula'
class Mruby < Formula
homepage 'http://www.mruby.org/'
head 'https://github.com/mruby/mruby.git'
def install
ENV.j1
system "make"
system "make test"
bin.install "bin/mrbc", "bin/mruby", "bin/mirb"
include.install "include/mrbconf.h"
include.install "include/mruby"
include.install "include/mruby.h"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment