2011-05-28 00:52:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libnfc < Formula
|
|
|
|
homepage 'http://www.libnfc.org/'
|
2013-01-18 04:43:45 +00:00
|
|
|
url 'http://libnfc.googlecode.com/files/libnfc-1.7.0-rc1.tar.gz'
|
|
|
|
sha1 'b8660604c950c50c12d68025672bf553e50f111d'
|
2011-05-28 00:52:46 +00:00
|
|
|
|
2012-12-26 18:03:21 +00:00
|
|
|
option 'with-pn532_uart', 'Enable PN532 UART support'
|
|
|
|
|
|
|
|
depends_on 'pkg-config' => :build
|
2011-05-28 00:52:46 +00:00
|
|
|
depends_on 'libusb-compat'
|
|
|
|
|
2012-12-26 18:03:21 +00:00
|
|
|
# Fixes the lack of MIN macro in sys/param.h on OS X which causes the formula not to compile
|
|
|
|
# Reported upstream:
|
|
|
|
# https://groups.google.com/forum/?fromgroups=#!topic/libnfc-devel/K0cwIdPuqJg
|
|
|
|
def patches
|
|
|
|
DATA
|
|
|
|
end
|
2011-07-18 20:02:11 +00:00
|
|
|
|
2011-05-28 00:52:46 +00:00
|
|
|
def install
|
2012-09-02 18:42:54 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-debug
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
]
|
2011-07-18 20:02:11 +00:00
|
|
|
|
2012-09-02 18:42:54 +00:00
|
|
|
if build.include? 'with-pn532_uart'
|
2011-07-18 20:02:11 +00:00
|
|
|
args << "--enable-serial-autoprobe"
|
|
|
|
args << "--with-drivers=pn532_uart"
|
|
|
|
end
|
|
|
|
|
|
|
|
system "./configure", *args
|
2011-05-28 00:52:46 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
2012-12-26 18:03:21 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/libnfc/nfc-internal.h b/libnfc/nfc-internal.h
|
|
|
|
index ec9e2fc..41797b2 100644
|
|
|
|
--- a/libnfc/nfc-internal.h
|
|
|
|
+++ b/libnfc/nfc-internal.h
|
|
|
|
@@ -33,6 +33,15 @@
|
|
|
|
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
+// Patch to compile on OS X
|
|
|
|
+// Tested on OS X Mountain Lion
|
|
|
|
+#ifndef MAX
|
|
|
|
+#define MAX(a,b) (((a) > (b)) ? (a) : (b))
|
|
|
|
+#endif
|
|
|
|
+#ifndef MIN
|
|
|
|
+#define MIN(a,b) (((a) < (b)) ? (a) : (b))
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* @macro HAL
|
|
|
|
* @brief Execute corresponding driver function if exists.
|