aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libtins.rb
blob: cc3bfd1817c57fd1e4507da3d543d7894a62f58b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require "formula"

class Libtins < Formula
  homepage "https://libtins.github.io/"
  url "https://github.com/mfontanini/libtins/archive/v3.1.tar.gz"
  sha1 "8047e87ba90f784d7022980c7351b616d43d4fba"
  head "https://github.com/mfontanini/libtins.git"

  bottle do
    sha1 "a192104ba75ed438f9238f8e574ff89d6616b337" => :mavericks
    sha1 "5eb5c9d9c7165d70d98473b06b8faadbd5b3133b" => :mountain_lion
    sha1 "b8bbdf13d0d00d963195bf749a4f51d67e20fb2d" => :lion
  end

  option :cxx11

  depends_on "cmake" => :build

  def install
    ENV.cxx11 if build.cxx11?
    args = std_cmake_args
    args << "-DLIBTINS_ENABLE_CXX11=1" if build.cxx11?

    system "cmake", ".", *args
    system "make", "install"
    doc.install "examples"
  end

  test do
    (testpath/"test.cpp").write <<-EOS.undent
      #include <tins/tins.h>
      int main() {
        Tins::Sniffer sniffer("en0");
      }
    EOS
    system ENV.cxx, "test.cpp", "-ltins", "-o", "test"
  end

end