Skip to content

Instantly share code, notes, and snippets.

@stephencelis
Created April 15, 2013 22:45
Show Gist options
  • Select an option

  • Save stephencelis/5391918 to your computer and use it in GitHub Desktop.

Select an option

Save stephencelis/5391918 to your computer and use it in GitHub Desktop.

Revisions

  1. stephencelis created this gist Apr 15, 2013.
    16 changes: 16 additions & 0 deletions burl.rb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    require 'formula'

    class Burl < Formula
    homepage 'https://github.com/visionmedia/burl'
    version '1.0.1'
    url 'https://github.com/visionmedia/burl/tarball/1.0.1'
    sha1 'f24bdfee9d2be74c20602aa12970f84df26214b2'

    def install
    system "make install"
    end

    def test
    system "false"
    end
    end