Created
March 28, 2012 18:24
-
-
Save chambbj/2229071 to your computer and use it in GitHub Desktop.
My libusb-devel formula for Homebrew (for PCL installation on OS X Lion)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class LibusbDevel < Formula | |
url 'https://github.com/OpenNI/OpenNI/blob/4dbf64bc45b880bfda6aa6bb2a30d1ddd03a8c65/Platform/Linux/Build/Prerequisites/libusb-1.0.8-osx.tar.bz2?raw=true' | |
homepage 'http://www.libusb.org/' | |
md5 '8ad20ec24b7612caf75a059a03f21dd8' | |
depends_on "automake" => :build | |
depends_on "libtool" => :build | |
def install | |
system "./autogen.sh" | |
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "LDFLAGS=-framework IOKit -framework CoreFoundation -arch x86_64", "CFLAGS=-arch x86_64" | |
system "make" | |
system "make install" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
MD5 support has been dropped for security reasons.
Please switch this formula to SHA256.