-
Notifications
You must be signed in to change notification settings - Fork 2
/
pm_crmgen.spec.in
85 lines (77 loc) · 2 KB
/
pm_crmgen.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
########################################
# Derived definitions
########################################
%define __check_files %{nil}
%define name pm_crmgen
%define version @VERSION@
%define release 1
%define prefix /usr
%define ORGARCH %{name}-%{version}
#
%define gendir /usr/share/pacemaker/%{name}
#
Summary: Pacemaker crm-file generator
Name: %{name}
Version: %{version}
Release: %{release}%{?dist}
Group: Applications
Source: %{ORGARCH}.tar.gz
License: GPL
Vendor: NIPPON TELEGRAPH AND TELEPHONE CORPORATION
BuildRoot: %{_tmppath}/%{name}
BuildRequires: make
BuildArch: noarch
Requires: python >= 2.4, python < 3.0
########################################
%description
########################################
Generate crm-file from CSV-file.
########################################
%prep
########################################
rm -rf $RPM_BUILD_ROOT
%setup -q -n %{ORGARCH}
########################################
%build
########################################
########################################
%configure
########################################
########################################
%install
########################################
make DESTDIR=$RPM_BUILD_ROOT install
ln -fs %{gendir}/pm_crmgen.py %{prefix}/bin/pm_crmgen
########################################
%clean
########################################
if
[ -n "${RPM_BUILD_ROOT}" -a "${RPM_BUILD_ROOT}" != "/" ]
then
rm -rf $RPM_BUILD_ROOT
fi
rm -rf $RPM_BUILD_DIR/%{name}-%{version}
########################################
%pre
########################################
true
########################################
%post
########################################
true
########################################
%preun
########################################
true
########################################
%postun
########################################
true
########################################
%files
########################################
%defattr(-,root,root)
%dir %{gendir}
%{gendir}/pm_crmgen.py
%{gendir}/pm_crmgen_env.xls
%{prefix}/bin/pm_crmgen