forked from stephanemagnenat/homebrew-kf5
-
Notifications
You must be signed in to change notification settings - Fork 3
/
kf5-kactivities.rb
34 lines (28 loc) · 990 Bytes
/
kf5-kactivities.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 Kf5Kactivities < Formula
url "http://download.kde.org/stable/frameworks/5.38/kactivities-5.38.0.tar.xz"
sha256 "289d25367515e8d4668f460e3274b68ed6322a7f1c6228602c0f20462303353f"
homepage "http://www.kde.org/"
head "git://anongit.kde.org/kactivities.git"
depends_on "cmake" => :build
depends_on "chigraph/kf5/kf5-extra-cmake-modules" => :build
depends_on "qt"
depends_on "chigraph/kf5/kf5-kconfig"
depends_on "chigraph/kf5/kf5-kdeclarative"
depends_on "chigraph/kf5/kf5-kdbusaddons"
depends_on "chigraph/kf5/kf5-ki18n"
depends_on "chigraph/kf5/kf5-kcmutils"
depends_on "boost"
bottle do
root_url "https://dl.chigraph.io/dependencies/darwin/brew"
sha256 "c64f4cdc5949ae8ae0fc819c0d1a8459df455039aebb96d82c32e85a86a16f20" => :sierra
end
def install
args = std_cmake_args
mkdir "build" do
system "cmake", "..", *args
system "make", "install"
prefix.install "install_manifest.txt"
end
end
end