Last active
December 17, 2015 14:49
-
-
Save dcunited001/5626800 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Cjdns < Formula | |
homepage 'https://github.com/cjdelisle/cjdns' | |
head 'https://github.com/cjdelisle/cjdns.git', :branch => 'named-pipes' | |
def options | |
[ | |
['--notest', "Skip the tests"] | |
] | |
end | |
depends_on 'cmake' => :build | |
depends_on 'libevent' | |
depends_on 'nacl' | |
def install | |
system "./do" | |
bin.install 'cjdroute' | |
bin.install 'cjdns' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment