homebrew-core/Formula/mp3splt.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

25 lines
831 B
Ruby

class Mp3splt < Formula
desc "Command-line interface to split MP3 and Ogg Vorbis files"
homepage "http://mp3splt.sourceforge.net"
url "https://downloads.sourceforge.net/project/mp3splt/mp3splt/2.6.2/mp3splt-2.6.2.tar.gz"
sha256 "3ec32b10ddd8bb11af987b8cd1c76382c48d265d0ffda53041d9aceb1f103baa"
bottle do
sha1 "00b4f15259c7e26e86dac674ef4169f8df2108e8" => :yosemite
sha1 "95a482d23df7573de4672fde06dae68939a968a2" => :mavericks
sha1 "30c65da5f3df5bd4b28420894bd9464cc857d2c9" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "libmp3splt"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/mp3splt", "-t", "0.1", test_fixtures("test.mp3")
end
end