aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike Arthur2010-04-18 15:20:03 +0200
committerMike Arthur2010-04-18 15:20:03 +0200
commit823028f8bcce01e6271ef9e47fc500ed675b6f2c (patch)
treebbf648b9012a4b210609d006b5abccda7c7ff952 /Library/Formula
parentdda843f813c84a2e9bd27438ec6cabb1d214ae65 (diff)
downloadhomebrew-823028f8bcce01e6271ef9e47fc500ed675b6f2c.tar.bz2
Add KDEBase Runtime 4.4.2 package.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/kdebase-runtime.rb17
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