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
|
Summary: simple text adventures/visual novels engine and game
Name: instead
Version: 1.6.0
Release: 1%{?dist}
License: GPLv2
URL: http://instead.googlecode.com
Source0: %{name}_%{version}.tar.gz
Group: Amusements/Games
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel, SDL_mixer-devel, SDL_image-devel, SDL_ttf-devel, lua-devel
%description
Simple text adventures/visual novels engine and game
Visual novell/text quest-like game in Russian with engine.
%prep
%setup -q
echo -e "2\n\/usr" | ./configure.sh
%build
make
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
#%doc doc/*
%{_bindir}/*
%{_datadir}/%{name}/*
%{_datadir}/applications/*
%{_datadir}/pixmaps/*
%{_datadir}/doc/*
%{_mandir}/*
|