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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
## tuxmath_preview.spec.in - process with configure to substitute in PACKAGE
## VERSION strings
#
# spec file for preview packages for tuxmath
#
# Note: this spec file is intended to produce RPM packages with
# "tuxmath_preview" rather than "tuxmath" as the package name, but
# otherwise identical for a given *.bzip2 source archive.
#
# It is intended for preview packaging of code that is under active
# development prior to the next general release.
#
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
Name: @PACKAGE@_preview
Obsoletes: tuxmath = 2001.09.07
Obsoletes: tuxmath <= @VERSION@
%define realname @PACKAGE@
%define progname @PACKAGE@
Summary: Tux Math - educational math game
Version: @VERSION@
Release: 1
License: GPL
Group: Amusements/Teaching/Mathematics
Url: http://tux4kids.alioth.debian.org/
Vendor: openSUSE-Education
BuildRequires: SDL_image-devel >= 1.2.2
#BuildRequires: SDL_ttf-devel > 2.0.8
BuildRequires: SDL-devel
BuildRequires: SDL_mixer-devel
BuildRequires: SDL_Pango-devel
BuildRequires: ImageMagick
%if 0%{?suse_version}
BuildRequires: update-desktop-files
BuildRequires: fdupes
%endif
%if 0%{?fedora_version}
BuildRequires: desktop-file-utils
%endif
%if 0%{?mandriva_version}
BuildRequires: desktop-file-utils
Requires(post): desktop-file-utils
Requires(postun): desktop-file-utils
%endif
%if 0%{?mandriva_version} >= 2009
BuildRequires: pulseaudio-esound-compat
%endif
Source0: %realname-%version.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
An educational math tutorial game starring Tux, the Linux Penguin.
Based on the classic arcade game "Missile Command," Tux must defend his cities.
In this case, though, he must do it by solving math problems.
Authors:
========
Bill Kendrick
David Bruce
Tim Holy
Brendan Luchen
Jesus Mager
Sam 'Criswell' Hart
Larry Ewing
# prep section: ---------------------------------------------------------
%prep
%setup -q -n %realname-%version
rm -rf $(find . -type d -name CVS)
rm -rf $(find . -type d -name .svn)
rm -rf $(find . -type d -name .xvpics)
# build section: ---------------------------------------------------------
%build
%configure --disable-rpath
make %{?jobs:-j %jobs}
# install section: ---------------------------------------------------------
%install
install -d %buildroot/{%_bindir,%_datadir/pixmaps,%_datadir/applications,%_datadir/%progname,%_defaultdocdir/%progname}
make DESTDIR=%{buildroot} install
install -m 644 data/images/icons/icon.png %buildroot%_datadir/pixmaps/%progname.png
%if 0%{?suse_version}
# handle special docdir path
mv %buildroot/%_datadir/doc/%progname/* %buildroot/%_defaultdocdir/%progname/
rm -rf %buildroot/%_datadir/doc/%progname
# install desktop file
%suse_update_desktop_file -i %progname Education Math
%fdupes -s %buildroot
%endif
%if 0%{?fedora_version}
# install desktop file
desktop-file-install --vendor="%{vendor}" \
--dir=%buildroot/%_datadir/applications \
%progname.desktop
%endif
%if 0%{?mandriva_version}
desktop-file-install --vendor="%{vendor}" \
--dir=%buildroot/%_datadir/applications \
%progname.desktop
%endif
# remove invalid locale directories
rm -rf %buildroot/%{_datadir}/locale/en@*
%find_lang %progname
%if 0%{?mandriva_version}
%post
%{update_menus}
%postun
%{clean_menus}
%endif
%clean
rm -rf %buildroot
# files section: ---------------------------------------------------------
%files -f %progname.lang
%defattr(-,root,root)
%doc %_defaultdocdir/%progname
%_bindir/*
%_datadir/pixmaps/*
%_datadir/applications/*
%_datadir/%progname
%changelog
|