2014-02-07 09:00:21 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class Librtlsdr < Formula
|
|
|
|
homepage "http://sdr.osmocom.org/trac/wiki/rtl-sdr"
|
2014-04-19 22:53:11 +00:00
|
|
|
head "git://git.osmocom.org/rtl-sdr.git", :shallow => false
|
2014-02-07 09:00:21 +00:00
|
|
|
url "https://github.com/steve-m/librtlsdr/archive/v0.5.3.tar.gz"
|
|
|
|
sha1 "f6f20f7b0562a6d3f7b9ff7bff38a15bff175982"
|
|
|
|
|
2014-04-20 23:27:58 +00:00
|
|
|
option :universal
|
|
|
|
|
2014-02-07 09:00:21 +00:00
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
depends_on "libusb"
|
|
|
|
|
|
|
|
def install
|
2014-04-20 23:27:58 +00:00
|
|
|
if build.universal?
|
|
|
|
ENV.universal_binary
|
|
|
|
ENV["CMAKE_OSX_ARCHITECTURES"] = Hardware::CPU.universal_archs.as_cmake_arch_flags
|
|
|
|
end
|
|
|
|
|
2014-02-07 09:00:21 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|