Skip to content
This repository was archived by the owner on Mar 26, 2020. It is now read-only.

Homebrew spec #243

Open
ened opened this issue Jun 23, 2016 · 0 comments
Open

Homebrew spec #243

ened opened this issue Jun 23, 2016 · 0 comments

Comments

@ened
Copy link

ened commented Jun 23, 2016

It would be help to install djinni conveniently through homebrew. Below is a sample formula.

class Djinni < Formula
  desc "A tool for generating cross-language type declarations and interface bindings"
  homepage "https://github.com/dropbox/djinni"
  head "https://github.com/dropbox/djinni.git"

  def install
    system "make", "djinni"

    inreplace "src/run", '"$base_dir/build"', '# "$base_dir/build"'
    inreplace "src/run", 'exec "$base_dir/target/start"', "exec \"#{prefix}/target/start\""

    prefix.install "src/run"
    prefix.install Dir["src/target/"]    

    bin.install_symlink "#{prefix}/run" => 'djinni'
  end
end
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants