homebrew-core/Formula/kdepimlibs.rb

19 lines
442 B
Ruby
Raw Normal View History

2010-02-26 00:22:43 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Kdepimlibs < Formula
2011-02-12 09:46:17 +00:00
url 'ftp://ftp.kde.org/pub/kde/stable/4.6.0/src/kdepimlibs-4.6.0.tar.bz2'
2010-02-26 00:22:43 +00:00
homepage 'http://www.kde.org/'
2011-02-12 09:46:17 +00:00
md5 'bfcc74fff5c6d0803d43cf13033660ab'
2010-02-26 00:22:43 +00:00
depends_on 'cmake' => :build
2010-02-26 00:22:43 +00:00
depends_on 'gpgme'
depends_on 'akonadi'
depends_on 'libical'
depends_on 'kdelibs'
def install
system "cmake . #{std_cmake_parameters} -DBUNDLE_INSTALL_DIR=#{bin}"
2010-02-26 00:22:43 +00:00
system "make install"
end
end