blob: 5786b7f37c3f3e3f0b23438686aa4cb6ba99f310 (
plain)
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
|
Name: amtterm
License: GPLv2+
Version: 1.6
Release: 1%{?dist}
Summary: Serial-over-lan (sol) client for Intel AMT
Group: Applications/Internet
URL: http://www.kraxel.org/blog/linux/amtterm/
Source: http://www.kraxel.org/releases/%{name}/%{name}-%{version}.tar.gz
Requires: xdg-utils
BuildRequires: gcc
BuildRequires: desktop-file-utils
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(gdk-3.0)
BuildRequires: pkgconfig(vte-2.91)
%description
Serial-over-lan (sol) client for Intel AMT.
Includes a terminal and a graphical (gtk) version.
Also comes with a perl script to gather informations
about and remotely control AMT managed computers.
%prep
%setup -q
%build
export CFLAGS="%{optflags}"
make prefix=/usr
%install
make prefix=/usr DESTDIR=%{buildroot} STRIP="" install
desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ \
%{buildroot}/%{_datadir}/applications/gamt.desktop
%files
%doc COPYING
%{_bindir}/amtterm
%{_bindir}/amttool
%{_bindir}/gamt
%{_mandir}/man1/amtterm.1.gz
%{_mandir}/man1/amttool.1.gz
%{_mandir}/man1/gamt.1.gz
%{_mandir}/man7/amt-howto.7.gz
%{_datadir}/applications/gamt.desktop
%changelog
* Mon Feb 27 2017 Gerd Hoffmann <kraxel@redhat.com> 1.6-1
- sync makefile & specfile (kraxel@redhat.com)
- *really* switch to vte 2.91 (kraxel@redhat.com)
* Mon Feb 27 2017 Gerd Hoffmann <kraxel@redhat.com> 1.5-1
- new package built with tito
|