Skip to content

Instantly share code, notes, and snippets.

@verus
Created February 20, 2012 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save verus/1871269 to your computer and use it in GitHub Desktop.
Save verus/1871269 to your computer and use it in GitHub Desktop.
Easybook formula for homebrew
require 'formula'
class Easybook < Formula
head 'https://github.com/javiereguiluz/easybook.git', :branch => 'master'
url 'https://github.com/javiereguiluz/easybook/tarball/v4.0.0'
homepage 'http://easybook-project.org/'
md5 'b9f891d3a88f8dd4013aa243c8b0ccb1'
def install
prefix.install Dir['*']
bin.mkpath
ln_s "#{prefix}/book", bin+"book"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment