]> git.pld-linux.org Git - packages/frogatto.git/blame - frogatto.spec
- removed -no_fbo_assert.patch (shadzik's request)
[packages/frogatto.git] / frogatto.spec
CommitLineData
c926e8b5 1Summary: An open-source "platformer" game
85fd7d6c 2Name: frogatto
3Version: 1.1.1
c5c8312a 4Release: 7
85fd7d6c 5License: GPL v3+
6Group: X11/Applications/Games
7Source0: http://www.frogatto.com/files/%{name}-%{version}.tar.bz2
8# Source0-md5: bf5a2ee4c3254a424766895ff250758b
9Patch0: %{name}-makefile.patch
10Patch1: %{name}-assertion.patch
ae67ef64 11Patch2: %{name}-libpng15.patch
85fd7d6c 12URL: http://www.frogatto.com/
13BuildRequires: OpenGL-GLU-devel
14BuildRequires: OpenGL-devel
15BuildRequires: SDL-devel >= 1.2.7
16BuildRequires: SDL_image-devel >= 1.2.0
17BuildRequires: SDL_mixer-devel >= 1.2.0
18BuildRequires: SDL_ttf-devel >= 2.0.8
19BuildRequires: boost-devel >= 1.35.0
20BuildRequires: ccache
21BuildRequires: glew-devel
22BuildRequires: sed >= 4.0
23BuildRequires: zlib-devel
24BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
25
26%description
c926e8b5 27Frogatto is an open-source "platformer" game, which means you're given
85fd7d6c 28a cross-section view into the world, and you help a small green fellow
29named Frogatto walk and jump between solid footholds whilst you lead
c926e8b5 30him through his story. There's a long history to the genre, so just by
85fd7d6c 31being in it we inevitably have a lot in common with other games,
c926e8b5 32however, we're not trying to clone any specific game.
85fd7d6c 33
34%prep
35%setup -q
36%patch0 -p1
37%patch1 -p1
ae67ef64 38%patch2 -p1
85fd7d6c 39
40# fix linking with our boost libs
41%{__sed} -i 's,-mt,,g' Makefile
42
43# set proper paths
44%{__sed} -i 's,data/,%{_datadir}/frogatto/data/,g' `find -name "*.[ch]pp" -o -name "*.po*" -o -name "*.cfg"`
45%{__sed} -i 's,./images/,%{_datadir}/frogatto/images/,g' `find -name "*.cpp"`
46%{__sed} -i 's,./locale/,%{_datadir}/locale/,g' src/i18n.cpp
be5425bc 47%{__sed} -i 's,music/,%{_datadir}/frogatto/music/,g' src/sound.cpp
48%{__sed} -i 's,sounds/,%{_datadir}/frogatto/sounds/,g' src/sound.cpp
85fd7d6c 49
50%build
51%{__make} \
52 CXX="%{__cxx}" \
53 OPT="%{rpmcxxflags}" \
54 LDFLAGS="%{rpmldflags}"
55
56%install
57rm -rf $RPM_BUILD_ROOT
58install -d $RPM_BUILD_ROOT{%{_bindir},%{_datadir}/frogatto,%{_datadir}/locale}
59
60cp -a game $RPM_BUILD_ROOT%{_bindir}/frogatto
61cp -a data $RPM_BUILD_ROOT%{_datadir}/frogatto
62cp -a images $RPM_BUILD_ROOT%{_datadir}/frogatto
63cp -a locale/* $RPM_BUILD_ROOT%{_datadir}/locale
be5425bc 64cp -a music $RPM_BUILD_ROOT%{_datadir}/frogatto
65cp -a sounds $RPM_BUILD_ROOT%{_datadir}/frogatto
85fd7d6c 66
67%find_lang %{name} --all-name
68
69%clean
70rm -rf $RPM_BUILD_ROOT
71
72%files -f %{name}.lang
73%defattr(644,root,root,755)
74%doc CHANGELOG
75%attr(755,root,root) %{_bindir}/frogatto
76%{_datadir}/frogatto
This page took 0.055778 seconds and 4 git commands to generate.