<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="The missing package manager for Chrome OS">
    <meta name="author" content="Michal Siwek">
    <link rel="shortcut icon" href="favicon.png">
    
    <title>Chromebrew - the software source you missed so much</title>

    <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
    <link href="jumbotron-narrow.css" rel="stylesheet">
    <link href="bs-example.css" rel="stylesheet">
    <link href="crew-specific.css" rel="stylesheet">
    

    <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
    <!--[if lt IE 9]>
      <script src="../../assets/js/html5shiv.js"></script>
      <script src="../../assets/js/respond.min.js"></script>
    <![endif]-->
  </head>

  <body>
    <div class="container">
      <div class="header">
        <ul class="nav nav-pills pull-right">
          
          <iframe src="http://ghbtns.com/github-btn.html?user=skycocker&repo=chromebrew&type=watch&size=large"
            allowtransparency="true" frameborder="0" scrolling="0" width="80" height="30"></iframe>
        
        </ul>
        <h3 class="text-muted">Chromebrew</h3>
      </div>

      <div class="jumbotron">
        <h1>Chromebrew</h1>
        <p class="lead">The missing package manager for Chrome OS</p>
      </div>

      <div class="row marketing">
        <div class="col-lg-6">
          <div class="bs-example bs-example-type">
            <h4>Chromebrew installs what you need with its dependencies</h4>
          </div>
          <div class="highlight">
            <pre><code>$ crew install vim</code></pre>
          </div>
          <div class="bs-example bs-example-type">
            <h4>And registers the changes being made, so you can easily remove anything</h4>
          </div>
          <div class="highlight">
            <pre><code>$ sudo crew remove vim</code></pre>
          </div>
          <div class="bs-example bs-example-type">
            <h4>Update software lists</h4>
          </div>
          <div class="highlight">
            <pre><code>$ crew update</code></pre>
          </div>
          <div class="bs-example bs-example-type">
            <h4>And update Chromebrew itself</h4>
          </div>
          <div class="highlight">
            <pre><code>$ sudo crew update crew</code></pre>
          </div>
        </div>
      </div>
      
      <div class="row marketing">
        <div class="col-lg-6">
          <div class="bs-example bs-example-type">
            <h4>Install Chromebrew (along with Ruby and Git)</h4>
            <h5>currently only i686 Chromebooks supported</h5>
          </div>
          <div class="highlight">
            <pre><code>wget -q -O - https://raw.github.com/skycocker/chromebrew/master/install.sh | bash</code></pre>
          </div>
        </div>
      </div>

      <div class="row marketing">
        <h3>What it is?</h3>
        <p>Chromebrew is a package manager / source builder hybrid targeted for Chromebooks with Chrome OS.</p>
      
        <h3>What it does?</h3>
        <p>
          It installs the software you need that hasn't been provided by Google. Many important packages are already precompiled and it's enough to just type <code>crew install package_name</code>, but if something's not already there, you can easily build and install it from source.
        </p>
        
        <h3>How does it work?</h3>
        <p>
          In fact, Chromebrew is a simple Ruby script. There's also some Git involved, so we needed both of these things to run it on a bare Chrome OS. We have prebuilt them along with their dependencies to install them into your system when the installation script is being ran. So, basically, after installing Chromebrew, you will have fully functional Ruby with Rubygems, Git and a package manager dedicated just for your Chromebook. Cool, huh?
        </p>

        <h3>How is it different from Crouton?</h3>
        <p>
          Well, Chromebrew doesn't install an operating system :p
        </p>
        <p>
          The idea is that you may be on a weak internet connection and cannot download too much data, but you don't have Crouton and need just some few small packages. Also, you may be on a good internet connection and need just some few small packages. Also, why not to use Chrome OS as a normal operating system?
        </p>

        <h3>Why does it currently only work on i686?</h3>
        <p>
          Because it needs Ruby, Git, GNU Make and GCC to work, and I only have an i686 Acer C7 Chromebook, so I can't port this software to other architectures. If Chromebrew will be widely used, I'm planning to raise money on Kickstarter to buy other Chromebooks and make Chromebrew work also on them.
        </p>

        <h3>How can I help?</h3>
        <p>
          If you have a compatibile (i686) Chromebook, you can fork my Github repo and add some new packages. You should know how to create them by looking at some existing ones - they are really simple Ruby files.
        </p>
      </div>

      <div class="footer">
        <p>&copy; <a href="http://msiwek.com/" target="_"><span class="name"><span class="name-first">Michal</span> Siwek</span></a> 2013</p>
      </div>

    </div> <!-- /container -->
  </body>
</html>