diff options
| author | Mike Arthur | 2010-04-18 15:20:03 +0200 |
|---|---|---|
| committer | Mike Arthur | 2010-04-18 15:20:03 +0200 |
| commit | 823028f8bcce01e6271ef9e47fc500ed675b6f2c (patch) | |
| tree | bbf648b9012a4b210609d006b5abccda7c7ff952 /Library/Formula | |
| parent | dda843f813c84a2e9bd27438ec6cabb1d214ae65 (diff) | |
| download | homebrew-823028f8bcce01e6271ef9e47fc500ed675b6f2c.tar.bz2 | |
Add KDEBase Runtime 4.4.2 package.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/kdebase-runtime.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/kdebase-runtime.rb b/Library/Formula/kdebase-runtime.rb new file mode 100644 index 000000000..baca2c489 --- /dev/null +++ b/Library/Formula/kdebase-runtime.rb @@ -0,0 +1,17 @@ +require 'formula' + +class KdebaseRuntime <Formula + url 'ftp://ftp.kde.org/pub/kde/stable/4.4.2/src/kdebase-runtime-4.4.2.tar.bz2' + homepage '' + md5 'd46fca58103624c28fcdf3fbd63262eb' + + depends_on 'cmake' + depends_on 'kde-phonon' + depends_on 'oxygen-icons' + + def install + phonon = Formula.factory 'kde-phonon' + system "cmake . #{std_cmake_parameters} -DPHONON_INCLUDE_DIR=#{phonon.include} -DPHONON_LIBRARY=#{phonon.lib}/libphonon.dylib -DBUNDLE_INSTALL_DIR=#{bin}" + system "make install" + end +end |
