rdesktop/rdesktop.spec
Paul Menzel 8ea3fab052 Set master version to 1.8.99 to be greater than 1.8.x versions
Currently, the version number of releases made from the branch 1.8.x are
greater than the version in the master branch (1.8.3post).

That makes life a little harder for packages wanting to package the code
from the master branch.

So, set the version to 1.8.99, ensuring with a high probability, that
the version will be greater than all 1.8.x releases.

Fixes: https://github.com/rdesktop/rdesktop/issues/325
2019-04-12 16:52:48 +02:00

36 lines
895 B
RPMSpec

Summary: Remote Desktop Protocol client
Name: rdesktop
Version: 1.8.99
Release: 1
License: GPL; see COPYING
Group: Applications/Communications
Source: rdesktop-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-buildroot
Packager: Peter Åstrand <astrand@cendio.se>
%description
rdesktop is a client for Remote Desktop Protocol (RDP), used in a number of
Microsoft products. It is known to work with Microsoft Windows server versions ranging from NT 4 terminal server to Windows Server 2012 R2.
%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