nsnake/nsnake.spec

51 lines
1.3 KiB
RPMSpec
Raw Normal View History

2013-07-30 01:56:20 +00:00
Name: nsnake
2014-03-08 04:17:53 +00:00
Version: 2.0.0
Release: 1%{?dist}
2013-07-30 01:56:20 +00:00
Summary: Classic snake game on console
2014-03-08 04:17:53 +00:00
URL: http://nsnake.alexdantas.net/
2013-07-30 01:56:20 +00:00
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
2014-03-08 04:17:53 +00:00
#Source1: %{name}.6
2013-07-30 01:56:20 +00:00
License: GPLv3+
BuildRequires: doxygen
BuildRequires: ncurses-devel
2013-05-15 14:29:22 +00:00
%description
nSnake is a implementation of the classic snake game with textual interface.
It is playable at command-line and uses the nCurses C library for graphics.
%prep
%setup -q
%build
make CFLAGS="%{optflags}" %{?_smp_mflags}
make doc
%install
2014-03-08 04:17:53 +00:00
install -pDm755 bin/%{name} %{buildroot}%{_bindir}/%{name}
2013-05-15 14:29:22 +00:00
%files
2014-03-08 05:49:03 +00:00
%doc BUGS ChangeLog COPYING README.md TODO
2014-03-08 04:17:53 +00:00
%{_bindir}/%{name}
2013-05-15 14:29:22 +00:00
%changelog
2014-03-08 04:17:53 +00:00
* Sat Mar 08 2014 Christopher Meng <rpm@cicku.me> - 2.0.0-1
- Update to 2.0.0
2013-07-30 01:56:20 +00:00
* Tue Jul 30 2013 Christopher Meng <rpm@cicku.me> - 1.7-3
- Move to unversioned docdir.
2013-05-15 14:29:22 +00:00
* Wed May 15 2013 Christopher Meng <rpm@cicku.me> - 1.7-2
- Fix upstream messup.
* Wed May 15 2013 Christopher Meng <rpm@cicku.me> - 1.7-1
- New verson with manpages fix.
* Tue May 14 2013 Christopher Meng <rpm@cicku.me> - 1.5-3
- Fix debuginfo.
* Sun May 12 2013 Christopher Meng <rpm@cicku.me> - 1.5-2
- Some fixes.
* Sat Apr 20 2013 Christopher Meng <rpm@cicku.me> - 1.5-1
- Initial Package.