aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hidapi.rb
blob: c1e08de2dd31fe17476cb9af83a229388a12875f (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 Hidapi < Formula
  homepage 'https://github.com/signal11/hidapi'
  url 'https://github.com/signal11/hidapi/archive/hidapi-0.8.0-rc1.tar.gz'
  sha1 '5e72a4c7add8b85c8abcdd360ab8b1e1421da468'

  bottle do
    cellar :any
    sha1 "f3af3a129f163480bfa90d082a95cccd3469da5b" => :mavericks
    sha1 "39200d818b0b7889b351c781e4c94a42c3c749c4" => :mountain_lion
    sha1 "68edd3c5c191007340c14cae9537371e0b975f4a" => :lion
  end

  depends_on 'autoconf' => :build
  depends_on 'automake' => :build
  depends_on 'libtool' => :build
  depends_on 'pkg-config' => :build

  def install
    system './bootstrap'
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end

  test do
    (testpath/'test.c').write <<-EOS.undent
      #include "hidapi.h"
      int main(void)
      {
        return hid_exit();
      }
    EOS

    flags = ["-I#{include}/hidapi", "-L#{lib}", "-lhidapi"] + ENV.cflags.to_s.split
    system ENV.cc, "-o", "test", "test.c", *flags
    system './test'
  end
end