2016-01-14 14:42:33 +00:00
|
|
|
class Fastd < Formula
|
|
|
|
desc "Fast and Secure Tunnelling Daemon"
|
|
|
|
homepage "https://projects.universe-factory.net/projects/fastd"
|
2016-04-03 15:51:46 +00:00
|
|
|
url "https://projects.universe-factory.net/attachments/download/86/fastd-18.tar.xz"
|
|
|
|
sha256 "714ff09d7bd75f79783f744f6f8c5af2fe456c8cf876feaa704c205a73e043c9"
|
2016-07-18 23:41:13 +00:00
|
|
|
revision 1
|
|
|
|
|
2016-09-24 15:45:48 +00:00
|
|
|
head "https://git.universe-factory.net/fastd/", :using => :git
|
2016-01-14 14:42:33 +00:00
|
|
|
|
2016-01-19 02:55:49 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2016-07-19 08:42:15 +00:00
|
|
|
sha256 "97cf3bcef653284348537ff8158afc77ec71361265f015d36a4735797b2c1546" => :el_capitan
|
|
|
|
sha256 "5bb6c0dd9cec0aefa25dfe0f0949518381faf3e8ce961672bbe060cb6332adb0" => :yosemite
|
|
|
|
sha256 "25a1180e91639faaaec33547ecb8e8e78cbbe876d3ee3e47d1ab61d09d243b39" => :mavericks
|
2016-01-19 02:55:49 +00:00
|
|
|
end
|
|
|
|
|
2016-01-14 14:42:33 +00:00
|
|
|
depends_on "cmake" => :build
|
|
|
|
depends_on "libuecc"
|
|
|
|
depends_on "libsodium"
|
|
|
|
depends_on "bison" => :build # fastd requires bison >= 2.5
|
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "json-c"
|
|
|
|
depends_on "openssl" => :optional
|
2016-09-24 15:45:48 +00:00
|
|
|
depends_on :tuntap => :optional
|
2016-01-14 14:42:33 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
args = std_cmake_args
|
|
|
|
args << "-DENABLE_LTO=ON"
|
|
|
|
args << "-DENABLE_OPENSSL=ON" if build.with? "openssl"
|
|
|
|
args << buildpath
|
|
|
|
mkdir "fastd-build" do
|
|
|
|
system "cmake", *args
|
|
|
|
system "make"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2016-04-11 08:59:05 +00:00
|
|
|
system "#{bin}/fastd", "--generate-key"
|
2016-01-14 14:42:33 +00:00
|
|
|
end
|
|
|
|
end
|