blob: cd7cdeca26117b85c1d5b76b0e51f1a82ddcc6f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#------------------------------------------------------------------------------
# scummvm-tools.spec
# This SPEC file controls the building of ScummVM Tools RPM packages.
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# Prologue information
#------------------------------------------------------------------------------
Name : scummvm-tools
Version : 2.1.0git
Release : 1
Summary : ScummVM-related tools
Group : Interpreters
License : GPL
Url : http://www.scummvm.org
Source : %{name}-%{version}.tar.xz
BuildRoot : %{_tmppath}/%{name}-%{version}-root
BuildRequires: zlib-devel
BuildRequires: wxGTK3-devel
BuildRequires: libmad-devel
BuildRequires: libvorbis-devel
BuildRequires: libogg-devel
BuildRequires: libpng-devel
BuildRequires: boost-devel
BuildRequires: flac-devel
BuildRequires: freetype-devel
#------------------------------------------------------------------------------
# Description
#------------------------------------------------------------------------------
%description
Tools for compressing ScummVM datafiles and other related tools.
#------------------------------------------------------------------------------
# install scripts
#------------------------------------------------------------------------------
%prep
%setup -q -n scummvm-tools-%{version}
%build
./configure --prefix=%{_prefix}
make %{_smp_mflags}
%install
make DESTDIR=%{buildroot} install
rm %{buildroot}%{_datadir}/scummvm-tools/detaillogo.jpg
rm %{buildroot}%{_datadir}/scummvm-tools/logo.jpg
rm %{buildroot}%{_datadir}/scummvm-tools/scummvmtools.icns
rm %{buildroot}%{_datadir}/scummvm-tools/scummvmtools.ico
rm %{buildroot}%{_datadir}/scummvm-tools/scummvmtools_128.png
rm %{buildroot}%{_datadir}/scummvm-tools/tile.gif
%clean
rm -Rf ${RPM_BUILD_ROOT}
#------------------------------------------------------------------------------
# Files listing.
#------------------------------------------------------------------------------
%files
%doc README COPYING
%attr(0755,root,root)%{_bindir}/*
#------------------------------------------------------------------------------
# Change Log
#------------------------------------------------------------------------------
%changelog
* Thu Nov 23 2017 (2.0.0)
- remove own libmad since this is now in Fedora itself
* Sat Apr 03 2010 (1.2.0)
- include libmad
* Sat Mar 26 2005 (0.7.1)
- first tools package
|