qmmp 1.1.8 (new formula)
Closes #12830. Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
This commit is contained in:
parent
31e2d79c9e
commit
5f7c78e540
1 changed files with 35 additions and 0 deletions
35
Formula/qmmp.rb
Normal file
35
Formula/qmmp.rb
Normal file
|
@ -0,0 +1,35 @@
|
|||
class Qmmp < Formula
|
||||
desc "Qt-based Multimedia Player"
|
||||
homepage "http://qmmp.ylsoftware.com"
|
||||
url "http://qmmp.ylsoftware.com/files/qmmp-1.1.8.tar.bz2"
|
||||
sha256 "17bc88d00ea0753e6fc7273592e894320f05cae807f7cc2c6a5351c73217f010"
|
||||
head "http://svn.code.sf.net/p/qmmp-dev/code/branches/qmmp-1.2/"
|
||||
|
||||
depends_on "cmake" => :build
|
||||
depends_on "qt"
|
||||
depends_on "ffmpeg"
|
||||
depends_on "flac"
|
||||
depends_on "libvorbis"
|
||||
depends_on "mad"
|
||||
depends_on "libogg"
|
||||
depends_on "libsoxr"
|
||||
depends_on "faad2"
|
||||
depends_on "opus"
|
||||
depends_on "opusfile"
|
||||
depends_on "mplayer"
|
||||
depends_on "libbs2b"
|
||||
depends_on "libsndfile"
|
||||
depends_on "musepack"
|
||||
depends_on "taglib"
|
||||
depends_on "libmms"
|
||||
depends_on "libsamplerate"
|
||||
|
||||
def install
|
||||
system "cmake", "./", "-USE_SKINNED", "-USE_ENCA", "-USE_QMMP_DIALOG", *std_cmake_args
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system bin/"qmmp", "--version"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue