-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibnetblock.spec.in
More file actions
120 lines (98 loc) · 3.09 KB
/
libnetblock.spec.in
File metadata and controls
120 lines (98 loc) · 3.09 KB
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
#
# LibNetBlock - A library which blocks programs from accessing the network.
# -- libnetblock.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 lnb_version @VERSION@
%define lnb_name libnetblock
%define lnb_release 1
%define lnb_url https://libnetblock.sourceforge.io
%define lnb_descr LibNetBlock is a preloadable library which intercepts and blocks system calls\
that are used to access the network.
%define lnb_lic GPLv3+
%define lnb_summary Library for blocking network access
# 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: %{lnb_summary}
Name: %{lnb_name}
Version: %{lnb_version}
Release: %{lnb_release}%{?dist}
URL: %{lnb_url}
BugURL: %{lnb_url}
License: %{lnb_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
#Group: System Utilities
#Prefix: /usr/local
Source: %{lnb_name}-%{lnb_version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-build
BuildRequires: gcc, glibc, glibc-devel, make, texinfo
%description
%{lnb_descr}
%prep
%setup -q
%configure --enable-static --enable-shared --enable-public-interface
%build
%make_build
%install
%make_install
libtool --finish %{_libdir}
%preun
#sed -i '/libnetblock/ d' /etc/ld.so.preload
%post
/sbin/ldconfig %{_libdir}
#install-info
%postun
/sbin/ldconfig %{_libdir}
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_libdir}/libnetblock.so
%{_libdir}/libnetblock.so.5
%{_libdir}/libnetblock.so.5.0.0
%{_libdir}/libnetblock.la
%doc %{_infodir}/libnetblock.info%_extension
%doc %{_mandir}/man3/libnetblock.3%_extension
%doc README
%doc COPYING
%doc AUTHORS
%doc ChangeLog
%changelog
############################################################################
%package devel
Summary: %{lnb_summary} - development package
Release: %{lnb_release}%{?dist}
URL: %{lnb_url}
BugURL: %{lnb_url}
License: %{lnb_lic}
Group: Development/C
#Prefix: /usr/local
Requires: %{lnb_name} = %{lnb_version}
%files devel
%defattr(-,root,root)
%{_includedir}/libnetblock.h
%{_libdir}/libnetblock.a
%{_libdir}/pkgconfig/libnetblock.pc
%description devel
This is the development package for LibNetBlock.
%{lnb_descr}