class Urh < Formula desc "Universal Radio Hacker" homepage "https://github.com/jopohl/urh" url "https://files.pythonhosted.org/packages/f2/1f/efab98a0a6e30950dfdb375b680645cae87191924b9d079501b12e762ffc/urh-1.8.5.tar.gz" sha256 "2953cd96db3fc27dba9dc51a0043728eac4483190f6aafdee04cc15e89bad06e" head "https://github.com/jopohl/urh.git" bottle do sha256 "ba8031856075432cf2e0814d4ed818a98735013f5e63b9ac556d3af29b56464b" => :sierra sha256 "00a0fcc35bf6202186f1e37a52fa26158632a9fa5f738288f436eef1278c9085" => :el_capitan sha256 "2862b538c268d3379e05a40a7b68f45a28539b1339ea7acc477d18e433ef2c03" => :yosemite end option "with-hackrf", "Build with libhackrf support" depends_on "pkg-config" => :build depends_on :python3 depends_on "pyqt" depends_on "hackrf" => :optional resource "numpy" do url "https://files.pythonhosted.org/packages/c0/3a/40967d9f5675fbb097ffec170f59c2ba19fc96373e73ad47c2cae9a30aed/numpy-1.13.1.zip" sha256 "c9b0283776085cb2804efff73e9955ca279ba4edafd58d3ead70b61d209c4fbb" end resource "psutil" do url "https://files.pythonhosted.org/packages/57/93/47a2e3befaf194ccc3d05ffbcba2cdcdd22a231100ef7e4cf63f085c900b/psutil-5.2.2.tar.gz" sha256 "44746540c0fab5b95401520d29eb9ffe84b3b4a235bd1d1971cbe36e1f38dd13" end resource "pyzmq" do url "https://files.pythonhosted.org/packages/af/37/8e0bf3800823bc247c36715a52e924e8f8fd5d1432f04b44b8cd7a5d7e55/pyzmq-16.0.2.tar.gz" sha256 "0322543fff5ab6f87d11a8a099c4c07dd8a1719040084b6ce9162bcdf5c45c9d" end def install # Workaround for https://github.com/Homebrew/brew/issues/932 ENV.delete "PYTHONPATH" # suppress urh warning about needing to recompile the c++ extensions inreplace "src/urh/main.py", "GENERATE_UI = True", "GENERATE_UI = False" xy = Language::Python.major_minor_version "python3" ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python#{xy}/site-packages" resources.each do |r| r.stage do system "python3", *Language::Python.setup_install_args(libexec/"vendor") end end ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python#{xy}/site-packages" system "python3", *Language::Python.setup_install_args(libexec) bin.install Dir[libexec/"bin/*"] bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"]) end test do xy = Language::Python.major_minor_version "python3" ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python#{xy}/site-packages" (testpath/"test.py").write <<-EOS.undent from urh.util.GenericCRC import GenericCRC; c = GenericCRC(); expected = [1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1] assert(expected == c.crc([1, 2, 3]).tolist()) EOS system "python3", "test.py" end end