88779ade49
Closes Homebrew/homebrew#14653.
50 lines
1.4 KiB
Ruby
50 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class SaneBackends < Formula
|
|
homepage 'http://www.sane-project.org/'
|
|
url 'ftp://ftp2.sane-project.org/pub/sane/sane-backends-1.0.22/sane-backends-1.0.22.tar.gz'
|
|
sha1 'dc04d6e6fd18791d8002c3fdb23e89fef3327135'
|
|
|
|
depends_on 'jpeg'
|
|
depends_on 'libtiff'
|
|
depends_on 'libusb-compat'
|
|
|
|
# Fixes u_long missing error. Reported upstream:
|
|
# https://github.com/fab1an/homebrew/commit/2a716f1a2b07705aa891e2c7fbb5148506aa5a01
|
|
# When updating this formula, check on the usptream status of this patch.
|
|
def patches
|
|
DATA
|
|
end
|
|
|
|
def install
|
|
ENV.j1 # Makefile does not seem to be parallel-safe
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--localstatedir=#{var}",
|
|
"--without-gphoto2",
|
|
"--enable-local-backends",
|
|
"--enable-libusb",
|
|
"--disable-latex"
|
|
system "make"
|
|
system "make install"
|
|
|
|
# Some drivers require a lockfile
|
|
(var+"lock/sane").mkpath
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/include/sane/sane.h.orig b/include/sane/sane.h
|
|
index 5320b4a..6cb7090 100644
|
|
--- a/include/sane/sane.h.orig
|
|
+++ b/include/sane/sane.h
|
|
@@ -20,6 +20,9 @@
|
|
extern "C" {
|
|
#endif
|
|
|
|
+// Fixes u_long missing error
|
|
+#include <sys/types.h>
|
|
+
|
|
/*
|
|
* SANE types and defines
|
|
*/
|