blob: bd9906a3321dd3644a2ea4b6e851aeb376703a68 (
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
|
require 'formula'
class Libnfc < Formula
homepage 'http://www.libnfc.org/'
url 'http://libnfc.googlecode.com/files/libnfc-1.6.0-rc1.tar.gz'
sha1 'bbff76269120c3a531eb96b7ceb96fd36c0071a1'
depends_on 'libusb-compat'
option 'with-pn532_uart', 'Enable PN532 UART support'
def install
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
]
if build.include? 'with-pn532_uart'
args << "--enable-serial-autoprobe"
args << "--with-drivers=pn532_uart"
end
system "./configure", *args
system "make install"
end
end
|