homebrew-core/Formula/kde-phonon.rb
Tom Stuart a8aa222d29 Add glib dep to prevent compile errors
Closes Homebrew/homebrew#4402.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2011-02-27 22:03:11 +00:00

19 lines
499 B
Ruby

require 'formula'
class KdePhonon <Formula
url 'ftp://ftp.kde.org/pub/kde/stable/phonon/4.4.4/src/phonon-4.4.4.tar.bz2'
homepage 'http://phonon.kde.org/'
md5 '1deb14ecb2185e1f2fe2741a0bd46852'
depends_on 'cmake' => :build
depends_on 'automoc4' => :build
depends_on 'qt'
depends_on 'glib' => :build
keg_only "This package is already supplied by Qt and is only needed by KDE packages."
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end