mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 20:55:18 -07:00
Merge branch 'master' of github.com:cweagans/neovim into cweagans-master
Conflicts: README.md
This commit is contained in:
commit
68847d7825
14
README.md
14
README.md
@ -185,17 +185,9 @@ and what is currently being worked on:
|
||||
|
||||
#### For OS X:
|
||||
|
||||
* Install [Xcode](https://developer.apple.com/)
|
||||
* Install [Xcode](https://developer.apple.com/) and [Homebrew][http://brew.sh]
|
||||
* Install sha1sum
|
||||
|
||||
Via MacPorts:
|
||||
|
||||
sudo port install md5sha1sum cmake libtool automake
|
||||
|
||||
Via Homebrew:
|
||||
|
||||
brew install md5sha1sum cmake libtool automake
|
||||
|
||||
If you run into wget certificate errors, you may be missing the root SSL
|
||||
certificates or have not set them up correctly:
|
||||
|
||||
@ -223,6 +215,10 @@ To build and run the tests:
|
||||
|
||||
make test
|
||||
|
||||
Using Homebrew on Mac:
|
||||
|
||||
brew install neovim/neovim/neovim
|
||||
|
||||
### Community
|
||||
|
||||
Join the community on IRC in #neovim on Freenode.
|
||||
|
16
neovim.rb
Normal file
16
neovim.rb
Normal file
@ -0,0 +1,16 @@
|
||||
require 'formula'
|
||||
|
||||
class Neovim < Formula
|
||||
homepage 'http://neovim.org'
|
||||
head 'https://github.com/neovim/neovim.git'
|
||||
|
||||
depends_on 'md5sha1sum'
|
||||
depends_on 'cmake'
|
||||
depends_on 'libtool'
|
||||
depends_on 'automake'
|
||||
|
||||
def install
|
||||
system "make", "PREFIX=#{prefix}", "cmake"
|
||||
system "make", "PREFIX=#{prefix}"
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user