aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike Arthur2010-03-18 15:44:05 +0000
committerMike Arthur2010-03-18 15:45:00 +0000
commit81a6e44c43ffbf3d8cffe0415a69936378e823f0 (patch)
treefc25c53564b049597b5f366d29cefe65dbc3ddd9 /Library/Formula
parent092bc986fdc837f6aa5d34696ab6487cb08906db (diff)
downloadhomebrew-81a6e44c43ffbf3d8cffe0415a69936378e823f0.tar.bz2
Add Phonon formula.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/phonon.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/phonon.rb b/Library/Formula/phonon.rb
new file mode 100644
index 000000000..1ca26be97
--- /dev/null
+++ b/Library/Formula/phonon.rb
@@ -0,0 +1,20 @@
+require 'formula'
+
+class Phonon <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 patches
+ "http://gitorious.org/phonon/phonon/commit/9556b819b089da67290691f53ce7c1550ed23705.patch"
+ end
+
+ def install
+ system "cmake . #{std_cmake_parameters}"
+ system "make install"
+ end
+end