-
Notifications
You must be signed in to change notification settings - Fork 1
/
yimp.spec.in
48 lines (36 loc) · 1.18 KB
/
yimp.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
#Spec file for Wireshark-YATE Plugin
Summary: Plugin for Wireshark
Name: @PACKAGE_TARNAME@
Version: @WIRESHARK_VERS_MAJOR@.@WIRESHARK_VERS_MINOR@y@YATE_VERSION@
Release: @PACKAGE_RELEASE@
License: GPLv2+
Packager: Sabina Iliescu <sabina@null.ro>
Group: Applications/Internet
Source: http://yate.null.ro/%{name}-%{version}-@PACKAGE_RELEASE@.tar.gz
URL: http://yate.null.ro/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: wireshark >= @WIRESHARK_VERS_MAJOR@.@WIRESHARK_VERS_MINOR@
BuildRequires: gcc
BuildRequires: wireshark-devel
BuildRequires: yate-devel
%description
Wireshark-YATE is a plugin which dissects Yate's Internal Messages
%global debug_package %{nil}
%define prefix /usr
%files
@WIRESHARK_PLUGIN_DIR@/yimp.so
%prep
%setup -q -n %{name}
%build
./configure --prefix=%{prefix} --sysconfdir=%{_sysconfdir} \
--datadir=%{_datadir} \
--libdir=%{_libdir} --mandir=%{_mandir} --with-archlib=%{_lib}
%install
make install DESTDIR=%{buildroot}
%clean
rm -rf %{buildroot}
%changelog
* Fri Mar 10 2023 Ioana Stanciu <oana@ss7ware.com>
- Require specific version of Wireshark, added more dependencies
* Tue Oct 30 2018 Sabina Iliescu <sabina@null.ro>
- created .spec file