2013-09-14 22:54:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Hidapi < Formula
|
2015-04-08 05:58:54 +00:00
|
|
|
homepage "https://github.com/signal11/hidapi"
|
|
|
|
url "https://github.com/signal11/hidapi/archive/hidapi-0.8.0-rc1.tar.gz"
|
|
|
|
sha1 "5e72a4c7add8b85c8abcdd360ab8b1e1421da468"
|
|
|
|
|
|
|
|
# This patch addresses a bug discovered in the HidApi IOHidManager back-end
|
|
|
|
# that is being used with Macs.
|
|
|
|
# The bug was dramatically changing the behaviour of the function
|
|
|
|
# "hid_get_feature_report". As a consequence, many applications working
|
|
|
|
# with HidApi were not behaving correctly on OSX.
|
|
|
|
# pull request on Hidapi's repo: https://github.com/signal11/hidapi/pull/219
|
|
|
|
patch do
|
|
|
|
url "https://patch-diff.githubusercontent.com/raw/signal11/hidapi/pull/219.diff"
|
|
|
|
sha256 "82631c8a6ec307482c09c133f9da89672c781665704304aa0ef286467b7fe5c2"
|
|
|
|
end
|
2013-09-14 22:54:57 +00:00
|
|
|
|
2014-07-09 00:18:43 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2015-04-08 17:40:50 +00:00
|
|
|
revision 1
|
|
|
|
sha256 "7fb4f99e0d29846541d91834a85c993b4391f78e5635d154da3ef025b0f84be3" => :yosemite
|
|
|
|
sha256 "28c0f7b67d8d041f70f2e7278f0e216660c5b4f004d6330f741485e8d75a4955" => :mavericks
|
|
|
|
sha256 "b7ced91d5e87d1d47ffc12de47ffbeac3391f1070fb0e2b47b84c929f372e99e" => :mountain_lion
|
2014-07-09 00:18:43 +00:00
|
|
|
end
|
|
|
|
|
2013-09-14 22:54:57 +00:00
|
|
|
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
|
|
|
|
|
2014-07-08 23:59:08 +00:00
|
|
|
flags = ["-I#{include}/hidapi", "-L#{lib}", "-lhidapi"] + ENV.cflags.to_s.split
|
2013-09-14 22:54:57 +00:00
|
|
|
system ENV.cc, "-o", "test", "test.c", *flags
|
|
|
|
system './test'
|
|
|
|
end
|
|
|
|
end
|