040f298459
Closes Homebrew/homebrew#44859. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
36 lines
1 KiB
Ruby
36 lines
1 KiB
Ruby
class Libbladerf < Formula
|
|
desc "bladeRF USB 3.0 Superspeed Software Defined Radio Source"
|
|
homepage "https://nuand.com/"
|
|
url "https://github.com/Nuand/bladeRF/archive/2015.07.tar.gz"
|
|
sha256 "9e15911ab39ba1eb4aa1bcbf518a0eac5396207fc4a58c32b2550fe0a65f9d22"
|
|
|
|
bottle do
|
|
sha256 "a0f5f3a24237452816c8d25caf2d615d00bf54b1f5f1afaac3aeed3db24dfb06" => :el_capitan
|
|
sha256 "da20c9f91d238d89aaf62499c7c2db6584685868c25289a680a1c2d816ef88cc" => :yosemite
|
|
sha256 "c41f40739255834f95fb69b19c6ec2827fd40b84ef24b22640620b3a66fe7c19" => :mavericks
|
|
end
|
|
|
|
option :universal
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "cmake" => :build
|
|
depends_on "libusb"
|
|
|
|
def install
|
|
args = std_cmake_args
|
|
|
|
if build.universal?
|
|
ENV.universal_binary
|
|
args << "-DCMAKE_OSX_ARCHITECTURES=#{Hardware::CPU.universal_archs.as_cmake_arch_flags}"
|
|
end
|
|
|
|
mkdir "host/build" do
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
system bin/"bladeRF-cli", "--version"
|
|
end
|
|
end
|