forked from stephanemagnenat/homebrew-kf5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkdevelop.rb
43 lines (37 loc) · 1.28 KB
/
kdevelop.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class Kdevelop < Formula
desc "Integrated Development Environment for KDE"
homepage "http://kdevelop.org"
#url ""
#sha256 ""
head "git://anongit.kde.org/kdevelop.git"
depends_on "cmake" => :build
depends_on "haraldf/kf5/kf5-extra-cmake-modules" => :build
depends_on "qt5" => "with-dbus"
depends_on "haraldf/kf5/kdevplatform"
depends_on "haraldf/kf5/kdevelop-pg-qt"
depends_on "haraldf/kf5/kf5-karchive"
depends_on "haraldf/kf5/kf5-kconfig"
depends_on "haraldf/kf5/kf5-kguiaddons"
depends_on "haraldf/kf5/kf5-ki18n"
depends_on "haraldf/kf5/kf5-kiconthemes"
depends_on "haraldf/kf5/kf5-kinit"
depends_on "haraldf/kf5/kf5-kio"
depends_on "haraldf/kf5/kf5-kitemmodels"
depends_on "haraldf/kf5/kf5-kitemviews"
depends_on "haraldf/kf5/kf5-kjobwidgets"
depends_on "haraldf/kf5/kf5-knewstuff"
depends_on "haraldf/kf5/kf5-kparts"
depends_on "haraldf/kf5/kf5-kservice"
depends_on "haraldf/kf5/kf5-ktexteditor"
depends_on "haraldf/kf5/kf5-kwallet"
depends_on "haraldf/kf5/kf5-kwidgetsaddons"
depends_on "haraldf/kf5/kf5-kwindowsystem"
depends_on "haraldf/kf5/kf5-kxmlgui"
depends_on "haraldf/kf5/kf5-sonnet"
def install
args = std_cmake_args
system "cmake", ".", *args
system "make", "install"
prefix.install "install_manifest.txt"
end
end