forked from libyui/libyui-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibyui-qt.spec.in
137 lines (105 loc) · 3.53 KB
/
libyui-qt.spec.in
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#
# spec file for package @PROJECTNAME@
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: @PROJECTNAME@
Version: @VERSION@
Release: 0
Source: @PROJECTNAME@-%{version}.tar.bz2
BuildRequires: boost-devel
BuildRequires: cmake >= 2.8
BuildRequires: gcc-c++
BuildRequires: pkg-config
%define libyui_devel_version libyui-devel >= 3.0.4
BuildRequires: %{libyui_devel_version}
BuildRequires: fontconfig-devel
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5Gui)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(Qt5Svg)
BuildRequires: pkgconfig(Qt5X11Extras)
Provides: yui_backend = @SONAME_MAJOR@
Url: @URL@
Summary: @SUMMARY@
License: LGPL-2.1 or LGPL-3.0
Group: System/Libraries
%description
@DESCRIPTION@
%package -n @PROJECTNAME@@SONAME_MAJOR@
Requires: lib@BASELIB@@SONAME_MAJOR@
Provides: lib@BASELIB@-qt = %{version}
Provides: yast2-qt = %{version}
Obsoletes: yast2-qt < 2.42.0
Url: @URL@
Summary: @SUMMARY@
Group: System/Libraries
%description -n @PROJECTNAME@@SONAME_MAJOR@
@DESCRIPTION@
%package devel
Requires: %{libyui_devel_version}
Requires: fontconfig-devel
Requires: @PROJECTNAME@@SONAME_MAJOR@ = %{version}
Url: @URL@
Summary: @PROJECTNAME_UC@ header files
Group: Development/Languages/C and C++
%description devel
@DESCRIPTION@
This can be used independently of YaST for generic (C++) applications.
This package has very few dependencies.
%prep
%setup -q -n @PROJECTNAME@-%{version}
%build
export CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
export CXXFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
./bootstrap.sh %{_prefix}
mkdir build
cd build
%if %{?_with_debug:1}%{!?_with_debug:0}
cmake .. \
-DPREFIX=%{_prefix} \
-DDOC_DIR=%{_docdir} \
-DLIB_DIR=%{_lib} \
-DCMAKE_BUILD_TYPE=RELWITHDEBINFO
%else
cmake .. \
-DPREFIX=%{_prefix} \
-DDOC_DIR=%{_docdir} \
-DLIB_DIR=%{_lib} \
-DCMAKE_BUILD_TYPE=RELEASE
%endif
make %{?jobs:-j%jobs}
%install
cd build
make install DESTDIR="$RPM_BUILD_ROOT"
install -m0755 -d $RPM_BUILD_ROOT/%{_docdir}/@PROJECTNAME@@SONAME_MAJOR@/
install -m0755 -d $RPM_BUILD_ROOT/%{_libdir}/@BASELIB@
install -m0644 ../COPYING* $RPM_BUILD_ROOT/%{_docdir}/@PROJECTNAME@@SONAME_MAJOR@/
%clean
rm -rf "$RPM_BUILD_ROOT"
%post -n @PROJECTNAME@@SONAME_MAJOR@ -p /sbin/ldconfig
%postun -n @PROJECTNAME@@SONAME_MAJOR@ -p /sbin/ldconfig
%files -n @PROJECTNAME@@SONAME_MAJOR@
%defattr(-,root,root)
%dir %{_libdir}/@BASELIB@
%{_libdir}/@BASELIB@/lib*.so.*
%doc %dir %{_docdir}/@PROJECTNAME@@SONAME_MAJOR@
%doc %{_docdir}/@PROJECTNAME@@SONAME_MAJOR@/COPYING*
%files devel
%defattr(-,root,root)
%dir %{_docdir}/@PROJECTNAME@@SONAME_MAJOR@
%{_libdir}/@BASELIB@/lib*.so
%{_prefix}/include/yui
%{_libdir}/pkgconfig/@[email protected]
%{_libdir}/cmake/@PROJECTNAME@
%changelog