Closed bfontaine closed 9 years ago
@bfontaine Awesome! I tested it on Ubuntu and OS X, and they both worked great. Thanks! Merging
Would you mind making a new release tag? That’ll be the last thing before the inclusion in Homebrew :smiley: Thanks!
@bfontaine
Done!
Thanks, I’ll comment here when it’ll be included :) (the PR is here: Homebrew/homebrew#36210)
Awesome, I look forward to it! Thanks a ton
It has been merged, Homebrew users can now install PacVim with brew install pacvim
:)
Hello again, This PR adds a full Makefile which features separate compilation tasks, and
install
/uninstall
targets, with support for a custom maps location.It allows you to type:
to install the game and have it in your PATH (so you can just type
pacvim
and it launches it), as well asmake uninstall
to uninstall it.The downside is that the maps directory location is fixed when the binary is compiled (which was already the case), which means you have to recompile it when you install it somewhere else. By default, the maps location is at
/usr/local/share/pacvim-maps/
. You can revert to the original behavior by runningmake MAPDIR=maps
.Feel free to comment on the code if you have any question.
The initial motivation for this PR was that with Homebrew, binaries are installed in a
bin
directory and other files in another directory, which means we have to patch the code before installing.