44 lines
1.6 KiB
Ruby
44 lines
1.6 KiB
Ruby
class Librtlsdr < Formula
|
|
desc "Use Realtek DVB-T dongles as a cheap SDR"
|
|
homepage "https://osmocom.org/projects/rtl-sdr/wiki"
|
|
url "https://github.com/steve-m/librtlsdr/archive/0.6.0.tar.gz"
|
|
sha256 "80a5155f3505bca8f1b808f8414d7dcd7c459b662a1cde84d3a2629a6e72ae55"
|
|
license "GPL-2.0"
|
|
head "https://git.osmocom.org/rtl-sdr", using: :git
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "7b8ccea097dd346fcaec28c4fd3545bbffe2bf0ddcd735fa2fd5dd6920c117a0"
|
|
sha256 cellar: :any, big_sur: "6bdf828e23854791779071bd32cd346d7cbc8d566738f63dd5c3185b91d11c73"
|
|
sha256 cellar: :any, catalina: "8d09d3c7765995caed6f1e8fa26087e345d178c630b1ef2057fb8c34cdcddd7d"
|
|
sha256 cellar: :any, mojave: "0e9b14804b722d9efc959940e40ebcef7bf716eb636f0bb0dc600770cb005531"
|
|
sha256 cellar: :any, high_sierra: "71f28a8abd8e9e0245a61f841fcebcb7a179d952be786199bf21fae0edd11f6c"
|
|
sha256 cellar: :any, sierra: "d1b83b24f32d4857205be289f7c632ee3bd77af802e3445d7565bb9ba9e4f3b1"
|
|
sha256 cellar: :any, el_capitan: "f5196572498f20ff0ea38d4e7ceed95aea1199a558f29dd6aac5cec9db65ce33"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libusb"
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include "rtl-sdr.h"
|
|
|
|
int main()
|
|
{
|
|
rtlsdr_get_device_count();
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "-L#{lib}", "-lrtlsdr", "test.c", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|