class EyeD3 < Formula desc "Work with ID3 metadata in .mp3 files" homepage "http://eyed3.nicfit.net/" url "http://eyed3.nicfit.net/releases/eyeD3-0.8.8.tar.gz" sha256 "58d18f4313c906c4f88831138fbaf440fca89dcf5a835caa3f67d4efe7d7f4a4" bottle do cellar :any_skip_relocation sha256 "1f5fe81fb312a31392f4a38d9fc37075cbc3e236f8c33cf0621c19ba8e6cfd65" => :mojave sha256 "ee8efa76add34083d40443de8ddbac779ab60e8ad82dc4a5153455e5ebd04b82" => :high_sierra sha256 "c57e39a95cd88bb866297a430bd5e043dbbb4162f797aa1aee1d692cdf2b0215" => :sierra end depends_on "libmagic" depends_on "python" # Looking for documentation? Please submit a PR to build some! # See https://github.com/Homebrew/homebrew/issues/32770 for previous attempt. resource "grako" do url "https://files.pythonhosted.org/packages/33/0d/6db911c7f6458974745c91c1e71841e347364798a5cc01e8149e84352c77/grako-3.99.9.zip" sha256 "fcc37309eab7cd0cbbb26cfd6a54303fbb80a00a58ab295d1e665bc69189c364" end resource "pathlib" do url "https://files.pythonhosted.org/packages/ac/aa/9b065a76b9af472437a0059f77e8f962fe350438b927cb80184c32f075eb/pathlib-1.0.1.tar.gz" sha256 "6940718dfc3eff4258203ad5021090933e5c04707d5ca8cc9e73c94a7894ea9f" end resource "python-magic" do url "https://files.pythonhosted.org/packages/84/30/80932401906eaf787f2e9bd86dc458f1d2e75b064b4c187341f29516945c/python-magic-0.4.15.tar.gz" sha256 "f3765c0f582d2dfc72c15f3b5a82aecfae9498bd29ca840d72f37d7bd38bfcd5" end resource "six" do url "https://files.pythonhosted.org/packages/dd/bf/4138e7bfb757de47d1f4b6994648ec67a51efe58fa907c1e11e350cddfca/six-1.12.0.tar.gz" sha256 "d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73" end def install 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 # Install in our prefix, not the first-in-the-path python site-packages dir. ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python#{xy}/site-packages" system "python3", "setup.py", "install", "--prefix=#{libexec}" share.install "docs/plugins", "docs/cli.rst" bin.install Dir[libexec/"bin/*"] bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"]) end test do touch "temp.mp3" system "#{bin}/eyeD3", "-a", "HomebrewYo", "-n", "37", "temp.mp3" end end