Skip to content

Instantly share code, notes, and snippets.

@azu
Created October 28, 2013 13:56
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 azu/7197221 to your computer and use it in GitHub Desktop.
Save azu/7197221 to your computer and use it in GitHub Desktop.
Homebrew formula : iv / lv5
require 'formula'
class Lv5 < Formula
homepage 'https://github.com/Constellation/iv'
url 'https://github.com/Constellation/iv/archive/69f89912a7c9160da1484347253015af782f9ac8.zip'
head 'https://github.com/Constellation/iv.git'
sha1 '7ea9bdd6394ac49d6293d5be34c7aa9af5d52067'
version '1.0'
depends_on 'cmake' => :build
depends_on 'bdw-gc'
def install
system "cmake", ".", *std_cmake_args
system "make lv5"
bin.install ['iv/lv5/lv5']
end
end
@barracuda156
Copy link

Which exactly files it has to install besides the binary?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment