d2375d0748
ld: library not found for -lIOKit Closes Homebrew/homebrew#25607. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
46 lines
1.7 KiB
Ruby
46 lines
1.7 KiB
Ruby
require 'formula'
|
|
|
|
class Libhid < Formula
|
|
homepage 'http://libhid.alioth.debian.org/'
|
|
url 'http://alioth.debian.org/frs/download.php/file/1958/libhid-0.2.16.tar.gz'
|
|
mirror 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/libhid-0.2.16.tar.gz'
|
|
sha1 '9a25fef674e8f20f97fea6700eb91c21ebbbcc02'
|
|
|
|
depends_on 'libusb'
|
|
depends_on 'libusb-compat'
|
|
|
|
# Fix compilation error on 10.9
|
|
def patches; DATA; end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-swig"
|
|
|
|
system "make install"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
--- libhid-0.2.16/src/Makefile.am.org 2014-01-02 19:20:33.000000000 +0200
|
|
+++ libhid-0.2.16/src/Makefile.am 2014-01-02 19:21:15.000000000 +0200
|
|
@@ -17,7 +17,7 @@ else
|
|
if OS_DARWIN
|
|
OS_SUPPORT_SOURCE = darwin.c
|
|
AM_CFLAGS += -no-cpp-precomp
|
|
-AM_LDFLAGS += -lIOKit -framework "CoreFoundation"
|
|
+AM_LDFLAGS += -framework IOKit -framework "CoreFoundation"
|
|
else
|
|
OS_SUPPORT =
|
|
endif
|
|
--- libhid-0.2.16/src/Makefile.in.org 2014-01-02 19:20:35.000000000 +0200
|
|
+++ libhid-0.2.16/src/Makefile.in 2014-01-02 19:21:24.000000000 +0200
|
|
@@ -39,7 +39,7 @@ POST_UNINSTALL = :
|
|
build_triplet = @build@
|
|
host_triplet = @host@
|
|
@OS_BSD_FALSE@@OS_DARWIN_TRUE@@OS_LINUX_FALSE@@OS_SOLARIS_FALSE@am__append_1 = -no-cpp-precomp
|
|
-@OS_BSD_FALSE@@OS_DARWIN_TRUE@@OS_LINUX_FALSE@@OS_SOLARIS_FALSE@am__append_2 = -lIOKit -framework "CoreFoundation"
|
|
+@OS_BSD_FALSE@@OS_DARWIN_TRUE@@OS_LINUX_FALSE@@OS_SOLARIS_FALSE@am__append_2 = -framework IOKit -framework "CoreFoundation"
|
|
bin_PROGRAMS = libhid-detach-device$(EXEEXT)
|
|
subdir = src
|
|
DIST_COMMON = $(include_HEADERS) $(srcdir)/Makefile.am \
|