31 lines
1.2 KiB
Ruby
31 lines
1.2 KiB
Ruby
class Mp3info < Formula
|
|
desc "MP3 technical info viewer and ID3 1.x tag editor"
|
|
homepage "https://www.ibiblio.org/mp3info/"
|
|
url "https://www.ibiblio.org/pub/linux/apps/sound/mp3-utils/mp3info/mp3info-0.8.5a.tgz"
|
|
sha256 "0438ac68e9f04947fb14ca5573d27c62454cb9db3a93b7f1d2c226cd3e0b4e10"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 1
|
|
sha256 "4f70eb02805d1fe2a93dc169b9baf2a3d1c685ded71094241189c93599ba6662" => :catalina
|
|
sha256 "74e04cc5b66e44632a9f3187f2360eba1f1f13ea153f7c6e4e0b4e466f58f084" => :mojave
|
|
sha256 "9b966553a2ed76afb888577cad6ae8f359cde30e445bb0742a87ff2c5d5dfa85" => :high_sierra
|
|
sha256 "dd9e2ab142307a9587ca28f8ca574cf3115f380f2692f1eb1e38e24d4e5a1008" => :sierra
|
|
sha256 "30c85d8b2afd6e6ad03e473de3bd83ef9c6c607b979570798cfc778ad887b902" => :el_capitan
|
|
end
|
|
|
|
patch :p0 do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/bedf6f8/mp3info/patch-mp3tech.c.diff"
|
|
sha256 "846d6f85a3fa22908c6104436e774fc109547f7c6e9788c15dd9e602228b7892"
|
|
end
|
|
|
|
def install
|
|
system "make", "mp3info", "doc"
|
|
bin.install "mp3info"
|
|
man1.install "mp3info.1"
|
|
end
|
|
|
|
test do
|
|
system bin/"mp3info", "-x", test_fixtures("test.mp3")
|
|
end
|
|
end
|