source: trunk/Install/rpm/translines.spec

Last change on this file was 137, checked in by chronos, 13 months ago
  • Added: Windows installer for 1.4.0.
  • Modified: Trunk pushed to 1.5.0 version.
File size: 1.8 KB
Line 
1Name: translines
2Version: 1.5.0
3Release: 1%{?dist}
4Summary: Enjoyable real-time metro building game.
5
6Group: Applications/Games
7License: Public Domain
8URL: https://app.zdechov.net/translines
9Source0: translines.tar.gz
10BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
11
12#BuildRequires: lazarus
13
14%description
15Enjoyable real-time metro building game.
16
17Features:
18* Supported 9 metro lines with different colors
19* Supported 12 metro stations shapes
20* Each week a player gets new train
21* Passengers with specific shape travel to the station with same shape
22* Tracks can be re-positioned and extended on both ends
23* New random stations appear continuously
24* Dark mode
25* Full screen mode
26* Multi-language support (English, Czech, French, German).
27* Career support with playable cities
28* Selectable weekly new improvements: line, carriage or termina
29
30%global debug_package %{nil}
31
32%prep
33%setup -q -c $(RPM_NAME)-$(RPM_VERSION)
34
35
36%build
37lazbuild --build-mode=Release TransLines.lpi
38
39%install
40rm -rf $RPM_BUILD_ROOT
41install -d -m 755 $RPM_BUILD_ROOT/usr/bin
42install -s -m 755 TransLines $RPM_BUILD_ROOT/usr/bin
43install -d -m 755 $RPM_BUILD_ROOT/usr/share/TransLines/languages
44cp -r Languages/*.po $RPM_BUILD_ROOT/usr/share/TransLines/languages
45install -d -m 755 $RPM_BUILD_ROOT/usr/share/applications
46install -m 644 Install/deb/TransLines.desktop $RPM_BUILD_ROOT/usr/share/applications
47install -d -m 755 $RPM_BUILD_ROOT/usr/share/pixmaps
48install -m 644 Images/64x64/TransLines.png $RPM_BUILD_ROOT/usr/share/pixmaps
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53
54%files
55%defattr(-,root,root,-)
56/usr/bin/TransLines
57/usr/share/applications/TransLines.desktop
58/usr/share/TransLines/*
59/usr/share/pixmaps/TransLines.png
60
61%changelog
Note: See TracBrowser for help on using the repository browser.