forked from stephanemagnenat/homebrew-kf5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kf5-kio.rb
29 lines (24 loc) · 889 Bytes
/
kf5-kio.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
require "formula"
class Kf5Kio < Formula
url "http://download.kde.org/stable/frameworks/5.16/kio-5.16.0.tar.xz"
sha1 "7d29772dbceca294de817f96f1611c6602448cae"
homepage "http://www.kde.org/"
head 'git://anongit.kde.org/kio.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-kbookmarks"
depends_on "haraldf/kf5/kf5-kjobwidgets"
depends_on "haraldf/kf5/kf5-kwallet"
depends_on "haraldf/kf5/kf5-solid"
def install
args = std_cmake_args
args << "-DCMAKE_CXX_FLAGS='-D_DARWIN_C_SOURCE'"
args << "-DCMAKE_C_FLAGS='-D_DARWIN_C_SOURCE'"
args << "-DCMAKE_REQUIRED_DEFINITIONS='-D_DARWIN_C_SOURCE'"
system "cmake", ".", *args
system "make", "install"
prefix.install "install_manifest.txt"
end
end