blob: 30a50de6cf74b244d40c31cd76fdf94e21da3157 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'formula'
class KdePhonon <Formula
url 'ftp://ftp.kde.org/pub/kde/stable/phonon/4.4.0/phonon-4.4.0.tgz'
homepage 'http://phonon.kde.org/'
md5 '80544b876cf0e0af05f2303b3f534351'
depends_on 'cmake'
depends_on 'qt'
depends_on 'automoc4'
def keg_only?
"This package is already supplied by Qt and is only needed by KDE packages."
end
def patches
"http://gitorious.org/phonon/phonon/commit/9556b819b089da67290691f53ce7c1550ed23705.patch"
end
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end
|