homebrew-core/Formula/kde-phonon.rb

19 lines
469 B
Ruby
Raw Normal View History

2010-03-18 15:44:05 +00:00
require 'formula'
class KdePhonon <Formula
2011-02-12 09:45:42 +00:00
url 'ftp://ftp.kde.org/pub/kde/stable/phonon/4.4.4/src/phonon-4.4.4.tar.bz2'
2010-03-18 15:44:05 +00:00
homepage 'http://phonon.kde.org/'
2011-02-12 09:45:42 +00:00
md5 '1deb14ecb2185e1f2fe2741a0bd46852'
2010-03-18 15:44:05 +00:00
depends_on 'cmake' => :build
depends_on 'automoc4' => :build
2010-03-18 15:44:05 +00:00
depends_on 'qt'
keg_only "This package is already supplied by Qt and is only needed by KDE packages."
2010-03-18 15:44:05 +00:00
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end