]> git.pld-linux.org Git - packages/fceultra.git/blob - fceultra.spec
- up to 2.6.6
[packages/fceultra.git] / fceultra.spec
1 Summary:        FCE Ultra - Linux Nintendo Entertainment System emulator
2 Summary(pl.UTF-8):      FCE Ultra - linuksowy emulator systemu Nintendo
3 Name:           fceultra
4 Version:        2.6.6
5 Release:        1
6 License:        GPL v2+
7 Group:          X11/Applications/Games
8 Source0:        https://github.com/TASEmulators/fceux/archive/refs/tags/v%{version}.tar.gz
9 # Source0-md5:  8e1aede624ebe26f0a936daba3b87328
10 URL:            http://fceultra.sourceforge.net/
11 BuildRequires:  Mesa-libGLU-devel
12 BuildRequires:  Qt5Core-devel >= 5.11
13 BuildRequires:  Qt5Gui-devel >= 5.11
14 BuildRequires:  Qt5OpenGL-devel >= 5.11
15 BuildRequires:  Qt5Widgets-devel >= 5.11
16 BuildRequires:  SDL2 >= 2.0
17 BuildRequires:  cmake
18 BuildRequires:  lua51-devel
19 BuildRequires:  minizip-devel
20 BuildRequires:  pkgconfig
21 Requires:       Qt5Gui-platform-xcb-glx >= 5.11
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 FCE Ultra is a cross platform, NTSC and PAL Famicom/NES emulator.
26
27 %description -l pl.UTF-8
28 FCE Ultra to wieloplatformowy emulator konsoli Famicom/NES/Pegasus.
29
30 %prep
31 %setup -q -n fceux-%{version}
32
33 %build
34 CFLAGS="%{rpmcflags}"
35 CXXFLAGS="%{rpmcxxflags}"
36 mkdir -p build
37 cd build
38 %cmake ..
39
40 %{__make}
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44 cd build
45 %{__make} install \
46         DESTDIR=$RPM_BUILD_ROOT
47 cd ..
48
49 install -d $RPM_BUILD_ROOT%{_mandir}/man6/
50 %{__mv} documentation/fceux.6 $RPM_BUILD_ROOT%{_mandir}/man6/
51 %{__mv} documentation/fceux-net-server.6 $RPM_BUILD_ROOT%{_mandir}/man6/
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc README TODO-SDL changelog.txt readme.md documentation/*
59 %attr(755,root,root) %{_bindir}/fceux
60 %dir %{_datadir}/fceux
61 %dir %{_datadir}/fceux/luaScripts
62 %dir %{_datadir}/fceux/palettes
63 %dir %{_datadir}/fceux/tools
64 %{_datadir}/fceux/*.{dll,chm}
65 %{_datadir}/fceux/luaScripts/*
66 %{_datadir}/fceux/palettes/*
67 %{_datadir}/fceux/tools/*
68 %{_mandir}/man6/fceux-net-server.6*
69 %{_mandir}/man6/fceux.6*
70 %{_pixmapsdir}/fceux1.png
71 %{_desktopdir}/fceux.desktop
This page took 0.422975 seconds and 4 git commands to generate.