Remove rpm macro "%__make", use "make" instead
[staging/xdg-launcher.git] / rpm / rpm-config.spec.in
1 ###########################################################################
2 # Copyright 2015, 2016, 2017 IoT.bzh
3 #
4 # author: @PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@>
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 ###########################################################################
18
19
20 Name:    @NPKG_PROJECT_NAME@
21 Version: @PROJECT_VERSION@
22 Release: 1
23 License: @PROJECT_LICENSE@
24 Summary: @PROJECT_DESCRIPTION@
25 Url:     @PROJECT_URL@
26 Source0: %{name}_%{version}.orig.tar.gz
27
28 BuildRequires: cmake
29 BuildRequires: gcc gcc-c++
30 @RPM_PKG_DEPS@
31
32 BuildRoot:     %{_tmppath}/%{name}-%{version}-build
33
34 %define _prefix /opt/AGL/@PROJECT_NAME@
35 %define __cmake cmake
36
37 %description
38 @PROJECT_DESCRIPTION@
39
40 %prep
41 %setup -q
42
43 %build
44 %cmake -DBINDINGS_INSTALL_PREFIX:PATH=%{_libdir}
45 make %{?_smp_mflags}
46
47 %install
48 CURDIR=$(pwd)
49 [ -d build ] && cd build
50 make populate
51 mkdir -p %{?buildroot}%{_prefix}
52 cp -r package/* %{?buildroot}%{_prefix}
53
54 cd $CURDIR
55 find %{?buildroot}%{_prefix} -type d -exec echo "%dir {}" \;>> pkg_file
56 find %{?buildroot}%{_prefix} -type f -exec echo "{}" \;>> pkg_file
57 sed -i 's@%{?buildroot}@@g' pkg_file
58
59
60 %files -f pkg_file
61 %defattr(-,root,root)