155 lines
4.9 KiB
RPMSpec
155 lines
4.9 KiB
RPMSpec
# Conditional for release and snapshot builds. Uncomment for release-builds.
|
|
#global rel_build 1
|
|
|
|
# Setup _pkgdocdir if not defined already.
|
|
%{!?_pkgdocdir:%global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
|
|
|
# Settings used for build from snapshots.
|
|
%{!?rel_build:%global commit 4520781f25805bd9e3b0a7b861d55a22baeff7e3}
|
|
%{!?rel_build:%global commit_date 20151229}
|
|
%{!?rel_build:%global shortcommit %(c=%{commit};echo ${c:0:7})}
|
|
%{!?rel_build:%global gitver git%{commit_date}-%{shortcommit}}
|
|
%{!?rel_build:%global gitrel .git%{commit_date}.%{shortcommit}}
|
|
|
|
# Proper naming for the tarball from github.
|
|
%global gittar %{name}-%{version}%{!?rel_build:-%{gitver}}.tar.gz
|
|
|
|
Name: 2048-cli
|
|
Version: 0.9.1
|
|
Release: 0.2%{?gitrel}%{?dist}
|
|
Summary: The game 2048 for your Linux terminal
|
|
%{?el5:Group: Amusements/Games}
|
|
|
|
License: MIT
|
|
URL: https://github.com/Tiehuis/%{name}
|
|
# Sources for release-builds.
|
|
%{?rel_build:Source0: %{url}/archive/v%{version}.tar.gz#/%{gittar}}
|
|
# Sources for snapshot-builds.
|
|
%{!?rel_build:Source0: %{url}/archive/%{commit}.tar.gz#/%{gittar}}
|
|
|
|
%{?el5:BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)}
|
|
BuildRequires: ncurses-devel
|
|
|
|
%description
|
|
A cli version of the game 2048 for your Linux terminal.
|
|
|
|
|
|
%package nocurses
|
|
Summary: The game 2048 for your Linux terminal (non-ncurses)
|
|
%{?el5:Group: Amusements/Games}
|
|
|
|
%description nocurses
|
|
A non-ncurses cli version of the game 2048 for your Linux terminal.
|
|
|
|
|
|
%package sdl
|
|
Summary: The game 2048 for your Linux terminal (SDL)
|
|
%{?el5:Group: Amusements/Games}
|
|
|
|
BuildRequires: SDL2_ttf-devel
|
|
BuildRequires: liberation-mono-fonts
|
|
|
|
Requires: liberation-mono-fonts
|
|
|
|
%description sdl
|
|
A SDL version of the game 2048 for your Linux terminal.
|
|
|
|
|
|
%prep
|
|
%setup -q%{!?rel_build:n %{name}-%{commit}}
|
|
%{__sed} -i -e 's!-o $(PROGRAM)!& $(LDFLAGS)!g' Makefile
|
|
%{__sed} -i -e 's!res/Anonymous Pro.ttf!%{_datadir}/fonts/liberation/LiberationMono-Regular.ttf!' \
|
|
src/gfx_sdl.c
|
|
|
|
|
|
%build
|
|
%configure || :
|
|
%{__make} %{?_smp_mflags} terminal
|
|
%{__mv} -f 2048 2048nc
|
|
%{__make} %{?_smp_mflags} sdl
|
|
%{__mv} -f 2048 2048sdl
|
|
%{__make} %{?_smp_mflags} curses
|
|
|
|
|
|
%install
|
|
%{?el5:%{__rm} -rf %{buildroot}}
|
|
|
|
# There is no install-target in Makefile.
|
|
%{__mkdir} -p %{buildroot}%{_bindir} \
|
|
%{buildroot}%{_mandir}/man1 \
|
|
%{buildroot}%{_pkgdocdir}
|
|
%{__install} -pm 0755 2048 2048nc 2048sdl %{buildroot}%{_bindir}
|
|
%{__install} -pm 0644 man/2048.1 %{buildroot}%{_mandir}/man1/2048.1
|
|
%{__install} -pm 0644 man/2048.1 %{buildroot}%{_mandir}/man1/2048nc.1
|
|
%{__install} -pm 0644 man/2048.1 %{buildroot}%{_mandir}/man1/2048sdl.1
|
|
%{__install} -pm 0644 README.md %{buildroot}%{_pkgdocdir}
|
|
|
|
|
|
%{?el5:%clean}
|
|
%{?el5:%{__rm} -rf %{buildroot}}
|
|
|
|
|
|
%files
|
|
%{!?_licensedir:%global license %doc}
|
|
%license LICENSE
|
|
%doc %{_pkgdocdir}
|
|
%{_bindir}/2048
|
|
%{_mandir}/man1/2048.1*
|
|
|
|
%files nocurses
|
|
# Pickup license-files from main-pkg's license-dir
|
|
# If there's no license-dir they are picked up by %%doc previously
|
|
%{?_licensedir:%license %{_datadir}/licenses/%{name}*}
|
|
%doc %{_pkgdocdir}
|
|
%{_bindir}/2048nc
|
|
%{_mandir}/man1/2048nc.1*
|
|
|
|
%files sdl
|
|
# Pickup license-files from main-pkg's license-dir
|
|
# If there's no license-dir they are picked up by %%doc previously
|
|
%{?_licensedir:%license %{_datadir}/licenses/%{name}*}
|
|
%doc %{_pkgdocdir}
|
|
%{_bindir}/2048sdl
|
|
%{_mandir}/man1/2048sdl.1*
|
|
|
|
|
|
%changelog
|
|
* Tue Mar 29 2016 Björn Esser <fedora@besser82.io> - 0.9.1-0.2.git20151229.4520781
|
|
- properly apply CFLAGS, without clobbering the Makefile-preset
|
|
|
|
* Tue Mar 29 2016 Björn Esser <fedora@besser82.io> - 0.9.1-0.1.git20151229.4520781
|
|
- update to new snapshot git20151229.4520781
|
|
- handle %%license and %%doc properly
|
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-7.git20150225.dc9adea
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Thu Jun 18 2015 Björn Esser <bjoern.esser@gmail.com> - 0.9-6.git20150225.dc9adea
|
|
- update to new snapshot git20150225.dc9adea
|
|
|
|
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-5.git20141214.723738c
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Sun Dec 14 2014 Björn Esser <bjoern.esser@gmail.com> - 0.9-4.git20141214.723738c
|
|
- update to new snapshot git20141214.723738c, obsoletes Patch0
|
|
|
|
* Sat Dec 13 2014 Björn Esser <bjoern.esser@gmail.com> - 0.9-3
|
|
- updated Patch0
|
|
|
|
* Sat Dec 13 2014 Björn Esser <bjoern.esser@gmail.com> - 0.9-2
|
|
- added Patch0 to fix malformated manpages
|
|
|
|
* Fri Dec 05 2014 Björn Esser <bjoern.esser@gmail.com> - 0.9-1
|
|
- new upstream release v0.9
|
|
- obsoleted Patch0
|
|
|
|
* Fri Dec 05 2014 Björn Esser <bjoern.esser@gmail.com> - 0.8-3.git20141205.a9505d9
|
|
- updated to new snapshot git20141205.a9505d9
|
|
- added Patch0 to have manpages
|
|
|
|
* Thu Dec 04 2014 Björn Esser <bjoern.esser@gmail.com> - 0.8-2
|
|
- dropped Patch0 (#1170231)
|
|
- some minor readability clean-up
|
|
|
|
* Wed Dec 03 2014 Björn Esser <bjoern.esser@gmail.com> - 0.8-1
|
|
- initial rpm-release (#1170231)
|