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 1 bottle do cellar :any sha256 "c53bb7dca86390de755fd994452bca8b225b628d0467756ba7a77451efd2f378" => :high_sierra sha256 "a4a62d458c37f5a46641a9c66622c079b0168c4e117878ceb0707f28b08fd93b" => :sierra sha256 "ce73204234a4b56739e28fbcdbd6c8ca1c44ada096f30a7b78a56056706811ac" => :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 int main() { osmosdr::device_t device(); return 0; } EOS system ENV.cc, "test.cpp", "-L#{lib}", "-lgnuradio-osmosdr", "-o", "test" system "./test" end end