34a605dd197e6356e06bfb74ac39ec0d770380a2
[apps/agl-service-data-persistence.git] / ll-database-binding / conf.d / app-templates / template.d / 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 Group:   AGL
24 License: @PROJECT_LICENSE@
25 Summary: @PROJECT_DESCRIPTION@
26 Url:     @PROJECT_URL@
27 Source0: %{name}_%{version}.orig.tar.gz
28
29 BuildRequires: cmake
30 BuildRequires: gcc gcc-c++
31 @RPM_PKG_DEPS@
32
33 BuildRoot:     %{_tmppath}/%{name}-%{version}-build
34
35 %define _prefix /opt/AGL/@PROJECT_NAME@
36 %define __cmake cmake
37
38 %description
39 @PROJECT_DESCRIPTION@
40
41 %prep
42 %setup -q
43
44 %build
45 %cmake -DCMAKE_INSTALL_PREFIX:PATH=%{_libdir}
46 make %{?_smp_mflags}
47
48 %install
49 CURDIR=$(pwd)
50 [ -d build ] && cd build
51 make populate
52 mkdir -p %{?buildroot}%{_prefix}
53 cp -r package/* %{?buildroot}%{_prefix}
54
55 cd $CURDIR
56 find %{?buildroot}%{_prefix} -type d -exec echo "%dir {}" \;>> pkg_file
57 find %{?buildroot}%{_prefix} -type f -exec echo "{}" \;>> pkg_file
58 sed -i 's@%{?buildroot}@@g' pkg_file
59
60
61 %files -f pkg_file
62 %defattr(-,root,root)