homebrew-core/Formula/exodriver.rb

23 lines
627 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Exodriver < Formula
desc "Thin interface to LabJack devices"
homepage "http://labjack.com/support/linux-and-mac-os-x-drivers"
url "https://github.com/labjack/exodriver/archive/v2.5.3.tar.gz"
sha256 "24cae64bbbb29dc0ef13f482f065a14d075d2e975b7765abed91f1f8504ac2a5"
head "https://github.com/labjack/exodriver.git"
depends_on "libusb"
2012-08-09 05:34:30 +00:00
option :universal
def install
2012-08-09 05:34:30 +00:00
ENV.universal_binary if build.universal?
cd "liblabjackusb"
system "make", "-f", "Makefile",
"DESTINATION=#{lib}",
"HEADER_DESTINATION=#{include}",
"install"
end
2011-03-10 05:11:03 +00:00
end