File: INSTALL

package info (click to toggle)
picmi 4%3A18.04.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,800 kB
  • sloc: cpp: 3,282; xml: 662; sh: 10; makefile: 7
file content (62 lines) | stat: -rw-r--r-- 1,579 bytes parent folder | download | duplicates (3)
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
PICMI


General Information
-------------------

Picmi has the following dependencies:

At run time:
qt, kdelibs, libkdegames

Additionally, at compile time:
cmake, automoc4


The default installation directories are

$prefix/bin                     (executable)
$prefix/share/apps/picmi        (graphics and levels)
$prefix/share/applications/kde4 (.desktop file)
$prefix/share/doc/kde/          (documentation)
$prefix/share/icons/            (icons)
~/.config/picmi/                (user configurations and highscores, created at runtime)

$prefix can be configured by setting the CMAKE_INSTALL_PREFIX variable when running cmake and defaults to /usr/local/ if not set.



Manual Installation
-------------------

In the picmi directory containing CMakeLists.txt, execute:

cmake -DCMAKE_INSTALL_PREFIX="/usr" .
make
make install

CMAKE_INSTALL_PREFIX can be set as required.
This will install to the default directories as specified above. For packaging,

make DESTDIR="/your/packaging/dir" install

will install to /your/packaging/dir.

All done, execute picmi to run the game.



Cross Platform Compatibility
----------------------------

Picmi should be compatible with any platform supported by Qt and KDE4. At the
very least, this means Linux, Mac and Windows installs should work just fine.

To install on another platform than Linux, edit CMakeLists.txt and set picmi_FILEPATH
to a location appropriate to your platform.

Settings and high scores will be automatically saved to platform-dependent locations;
for more details, see the QSettings documentation.


Enjoy!