-
Notifications
You must be signed in to change notification settings - Fork 56
/
kf5-knewstuff.rb
48 lines (41 loc) · 1.52 KB
/
kf5-knewstuff.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
44
45
46
47
48
require "formula"
class Kf5Knewstuff < Formula
url "http://download.kde.org/stable/frameworks/5.1.0/knewstuff-5.1.0.tar.xz"
sha1 "0505132d48ff0e276de8e9e3f1b9ed599e5f9b2e"
homepage "http://www.kde.org/"
head 'git://anongit.kde.org/knewstuff.git'
depends_on "cmake" => :build
depends_on "haraldf/kf5/kf5-extra-cmake-modules" => :build
depends_on "qt5" => "with-d-bus"
depends_on "haraldf/kf5/kf5-karchive"
depends_on "haraldf/kf5/kf5-kjs"
depends_on "haraldf/kf5/kf5-kcompletion"
depends_on "haraldf/kf5/kf5-kconfig"
depends_on "haraldf/kf5/kf5-kcoreaddons"
depends_on "haraldf/kf5/kf5-ki18n"
depends_on "haraldf/kf5/kf5-kauth"
depends_on "haraldf/kf5/kf5-kcodecs"
depends_on "haraldf/kf5/kf5-kguiaddons"
depends_on "haraldf/kf5/kf5-kconfigwidgets"
depends_on "haraldf/kf5/kf5-kiconthemes"
depends_on "haraldf/kf5/kf5-kglobalaccel"
depends_on "haraldf/kf5/kf5-kdbusaddons"
depends_on "haraldf/kf5/kf5-kservice"
depends_on "haraldf/kf5/kf5-kwindowsystem"
depends_on "haraldf/kf5/kf5-sonnet"
depends_on "haraldf/kf5/kf5-kbookmarks"
depends_on "haraldf/kf5/kf5-kjobwidgets"
depends_on "haraldf/kf5/kf5-solid"
depends_on "haraldf/kf5/kf5-kio"
depends_on "haraldf/kf5/kf5-kitemviews"
depends_on "haraldf/kf5/kf5-ktextwidgets"
depends_on "haraldf/kf5/kf5-kwidgetsaddons"
depends_on "haraldf/kf5/kf5-kxmlgui"
depends_on "haraldf/kf5/kf5-attica"
def install
args = std_cmake_args
system "cmake", ".", *args
system "make", "install"
prefix.install "install_manifest.txt"
end
end