forked from stephanemagnenat/homebrew-kf5
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkf5-kdelibs4support.rb
34 lines (27 loc) · 1020 Bytes
/
kf5-kdelibs4support.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
require "formula"
class Kf5Kdelibs4support < Formula
url "http://download.kde.org/stable/frameworks/5.38/portingAids/kdelibs4support-5.38.0.tar.xz"
sha256 "f72aac163070bd116a112b7918a71d9dc79f945b19e5f449e55704e1e37f741b"
homepage "http://www.kde.org/"
head "git://anongit.kde.org/kdelibs4support.git"
depends_on "cmake" => :build
depends_on "perl" => :build
depends_on "cpanminus" => :build
depends_on "chigraph/kf5/kf5-extra-cmake-modules" => :build
depends_on "chigraph/kf5/kf5-kded"
depends_on "chigraph/kf5/kf5-kdoctools" => :build
depends_on "qt"
depends_on "chigraph/kf5/kf5-kdesignerplugin"
depends_on "chigraph/kf5/kf5-kemoticons"
depends_on "chigraph/kf5/kf5-kinit"
depends_on "chigraph/kf5/kf5-kitemmodels"
depends_on "chigraph/kf5/kf5-kunitconversion"
depends_on "chigraph/kf5/kf5-kparts"
def install
system "cpanm", "URI"
args = std_cmake_args
system "cmake", ".", *args
system "make", "install"
prefix.install "install_manifest.txt"
end
end