homebrew-core/Formula/exodriver.rb

30 lines
695 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Exodriver < Formula
2011-01-16 16:08:27 +00:00
url 'https://github.com/labjack/exodriver/tarball/v2.0.4'
homepage 'http://labjack.com/support/linux-and-mac-os-x-drivers'
2011-01-16 16:08:27 +00:00
md5 '9208085ee8a9166898dc812b9d7e1905'
head 'https://github.com/labjack/exodriver.git', :using => :git
depends_on 'libusb'
def options
[["--universal", "Build a universal binary."]]
end
def install
cd 'liblabjackusb'
mv 'Makefile.MacOSX', 'Makefile'
inreplace 'Makefile' do |s|
s.change_make_var! 'DESTINATION', lib
s.change_make_var! 'HEADER_DESTINATION', include
end
2011-04-21 16:42:27 +00:00
ENV.universal_binary if ARGV.build_universal?
system "make"
system "make install"
end
2011-03-10 05:11:03 +00:00
end