53 lines
1.6 KiB
Ruby
53 lines
1.6 KiB
Ruby
class GrOsmosdr < Formula
|
|
desc "Osmocom GNU Radio Blocks"
|
|
homepage "https://osmocom.org/projects/sdr/wiki/GrOsmoSDR"
|
|
url "https://cgit.osmocom.org/gr-osmosdr/snapshot/gr-osmosdr-0.1.4.tar.gz"
|
|
mirror "https://github.com/osmocom/gr-osmosdr/archive/v0.1.4.tar.gz"
|
|
sha256 "bcf9a9b1760e667c41a354e8cd41ef911d0929d5e4a18e0594ccb3320d735066"
|
|
revision 2
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "b2ede1752f9206c1360351a9864159f7f02d74c90662fa887b6ed86080c5d763" => :high_sierra
|
|
sha256 "f45c8f18d680b22b8e97988058e459525be5ed832a767cfa599ba9cc97418628" => :sierra
|
|
sha256 "032f526adf3b910f5657b5f68ee8b55463ff9bce4e4c91532c1ca4d4fce9aeb4" => :el_capitan
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "swig" => :build
|
|
depends_on "airspy"
|
|
depends_on "boost"
|
|
depends_on "gnuradio"
|
|
depends_on "hackrf"
|
|
depends_on "librtlsdr"
|
|
depends_on "python"
|
|
depends_on "uhd"
|
|
|
|
resource "Cheetah" do
|
|
url "https://files.pythonhosted.org/packages/source/C/Cheetah/Cheetah-2.4.4.tar.gz"
|
|
sha256 "be308229f0c1e5e5af4f27d7ee06d90bb19e6af3059794e5fd536a6f29a9b550"
|
|
end
|
|
|
|
def install
|
|
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages"
|
|
|
|
resource("Cheetah").stage do
|
|
system "python", *Language::Python.setup_install_args(libexec/"vendor")
|
|
end
|
|
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <osmosdr/device.h>
|
|
int main() {
|
|
osmosdr::device_t device();
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.cpp", "-L#{lib}", "-lgnuradio-osmosdr", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|