-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibsecrm.spec.in
126 lines (103 loc) · 3.41 KB
/
libsecrm.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
#
# LibSecRm - A library for secure removing files.
# -- libsecrm.spec.in, part of the build system.
#
# @configure_input@
#
# Copyright (C) 2007-2024 Bogdan Drozdowski, bogdro (at) users . sourceforge . net
# License: GNU General Public License, v3+
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Special names here like {__make} come from /usr/lib/rpm/macros, /usr/lib/rpm/macros.rpmbuild
%define lsr_version @VERSION@
%define lsr_release 1
%define lsr_name libsecrm
%define lsr_url https://libsecrm.sourceforge.io
%define lsr_descr LibSecRm is a library which intercepts system calls that may lead to \
insecure data (file and memory) deletion. The insecure removal functions are \
replaced by secure ones (wiping the data the same way as the shred utility).
%define lsr_lic GPLv3+
%define lsr_summary Library for secure removal of data
# Settings (/usr/lib/rpm/macros.d/macros.spec-helper, /usr/lib/rpm/macros)
%define dont_remove_libtool_files 1
#define _unpackaged_files_terminate_build 0
Summary: %{lsr_summary}
Name: %{lsr_name}
Version: %{lsr_version}
Release: %{lsr_release}%{?dist}
URL: %{lsr_url}
BugURL: %{lsr_url}
License: %{lsr_lic}
# group must be one of the listed in /usr/share/doc/rpm-.../GROUPS or /usr/share/rpmlint/config.d/distro.conf
Group: System/Libraries
Source: %{lsr_name}-%{lsr_version}.tar.gz
BuildRoot: %{_tmppath}/%{lsr_name}-build
BuildRequires: gcc, glibc, glibc-devel, make, texinfo
%description
%{lsr_descr}
%prep
%setup -q
%configure --enable-static --enable-shared --enable-public-interface
%build
# % make - deprecated
%make_build
%install
# % makeinstall_std - deprecated
%make_install
libtool --finish %{_libdir}
%post
#echo {_libdir}/libsecrm.so >> /etc/ld.so.preload
#touch {_sysconfdir}/libsecrm.progban
#touch {_sysconfdir}/libsecrm.fileban
/sbin/ldconfig %{_libdir}
#install-info
%preun
#sed -i '/libsecrm/ d' /etc/ld.so.preload
%postun
/sbin/ldconfig %{_libdir}
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_libdir}/libsecrm.so
%{_libdir}/libsecrm.so.12
%{_libdir}/libsecrm.so.12.0.0
%{_libdir}/libsecrm.la
%doc %{_infodir}/libsecrm.info%_extension
%doc %{_mandir}/man3/libsecrm.3%_extension
%ghost %config(missingok,noreplace) %attr(644,-,-) %{_sysconfdir}/libsecrm.progban
%ghost %config(missingok,noreplace) %attr(644,-,-) %{_sysconfdir}/libsecrm.fileban
%doc README
%doc COPYING
%doc AUTHORS
%doc ChangeLog
%changelog
############################################################################
%package devel
Summary: %{lsr_summary} - development package
Release: %{lsr_release}%{?dist}
URL: %{lsr_url}
BugURL: %{lsr_url}
License: %{lsr_lic}
Group: Development/C
Requires: %{lsr_name} = %{lsr_version}
%files devel
%defattr(-,root,root)
%{_includedir}/libsecrm.h
%{_libdir}/libsecrm.a
%{_libdir}/pkgconfig/libsecrm.pc
%description devel
This is the development package for LibSecRm.
%{lsr_descr}