You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2020. It is now read-only.
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
The text was updated successfully, but these errors were encountered:
It would be help to install djinni conveniently through homebrew. Below is a sample formula.
The text was updated successfully, but these errors were encountered: