-
Notifications
You must be signed in to change notification settings - Fork 1
/
rdesktop.spec
36 lines (29 loc) · 872 Bytes
/
rdesktop.spec
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
Summary: Remote Desktop Protocol client
Name: rdesktop
Version: 1.7.1post
Release: 1
License: GPL; see COPYING
Group: Applications/Communications
Source: rdesktop-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-buildroot
Packager: Peter Åstrand <[email protected]>
%description
rdesktop is a client for Remote Desktop Protocol (RDP), used in a number of
Microsoft products including Windows NT Terminal Server, Windows 2000 Server,
Windows XP and Windows 2003 Server.
%prep
rm -rf $RPM_BUILD_ROOT
%setup
%build
./configure --prefix=%{_prefix} --bindir=%{_bindir} --mandir=%{_mandir}
make
%install
make install DESTDIR=$RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc COPYING doc/AUTHORS doc/keymapping.txt doc/keymap-names.txt doc/ipv6.txt doc/ChangeLog
%{_bindir}/rdesktop
%{_mandir}/man1/rdesktop.1*
%{_datadir}/rdesktop/keymaps
%clean
rm -rf $RPM_BUILD_ROOT