diff options
| author | Mike Arthur | 2010-03-18 15:44:05 +0000 |
|---|---|---|
| committer | Mike Arthur | 2010-03-18 15:45:00 +0000 |
| commit | 81a6e44c43ffbf3d8cffe0415a69936378e823f0 (patch) | |
| tree | fc25c53564b049597b5f366d29cefe65dbc3ddd9 /Library/Formula | |
| parent | 092bc986fdc837f6aa5d34696ab6487cb08906db (diff) | |
| download | homebrew-81a6e44c43ffbf3d8cffe0415a69936378e823f0.tar.bz2 | |
Add Phonon formula.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/phonon.rb | 20 |
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 |
