blob: 89d1fa3e35be599d6c1da224581f3b478f62def7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  | 
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'
  keg_only "This package is already supplied by Qt and is only needed by KDE packages."
  def patches
    "http://gitorious.org/phonon/phonon/commit/9556b819b089da67290691f53ce7c1550ed23705.patch"
  end
  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end
  |