Feature #205 ยป 0024-Add-granularity-to-distribution-and-install.patch
| configure.ac | ||
|---|---|---|
|
data/civ2civ3/Makefile
|
||
|
data/civ1/Makefile
|
||
|
data/civ2/Makefile
|
||
|
data/granularity/Makefile
|
||
|
data/stub/Makefile
|
||
|
data/stub/nations/Makefile
|
||
|
data/scenarios/Makefile
|
||
| data/Makefile.am | ||
|---|---|---|
|
endif
|
||
|
SRV_RE_DATADIRS = default classic civ1 civ2 sandbox multiplayer \
|
||
|
alien civ2civ3 stub nation
|
||
|
alien civ2civ3 granularity stub nation
|
||
|
if SERVER
|
||
|
SERVERDATADIRS = $(SRV_RE_DATADIRS) scenarios
|
||
|
else
|
||
| data/granularity/.gitignore | ||
|---|---|---|
|
/Makefile.in
|
||
| data/granularity/Makefile.am | ||
|---|---|---|
|
## Process this file with automake to produce Makefile.in
|
||
|
## Override automake so that "make install" puts these in proper place:
|
||
|
pkgdatadir = $(datadir)/$(PACKAGE)/granularity
|
||
|
pkgdata_DATA = \
|
||
|
actions.ruleset \
|
||
|
buildings.ruleset \
|
||
|
cities.ruleset \
|
||
|
effects.ruleset \
|
||
|
script.lua \
|
||
|
parser.lua \
|
||
|
styles.ruleset \
|
||
|
game.ruleset \
|
||
|
governments.ruleset \
|
||
|
nations.ruleset \
|
||
|
techs.ruleset \
|
||
|
terrain.ruleset \
|
||
|
units.ruleset \
|
||
|
README.granularity
|
||
|
EXTRA_DIST = $(pkgdata_DATA)
|
||
| meson.build | ||
|---|---|---|
|
'sandbox',
|
||
|
'civ1',
|
||
|
'civ2',
|
||
|
'granularity',
|
||
|
'stub'
|
||
|
]
|
||
| ... | ... | |
|
'data/sandbox.modpack',
|
||
|
'data/civ1.modpack',
|
||
|
'data/civ2.modpack',
|
||
|
'data/granularity.modpack',
|
||
|
install_dir : join_paths(get_option('datadir'), 'freeciv')
|
||
|
)
|
||
| ... | ... | |
|
install_dir : join_paths(get_option('datadir'), 'freeciv/alien')
|
||
|
)
|
||
|
install_data(
|
||
|
'data/granularity/README.granularity',
|
||
|
install_dir : join_paths(get_option('datadir'), 'freeciv/granularity')
|
||
|
)
|
||
|
install_data(
|
||
|
'data/alien/nation/adventurers.ruleset',
|
||
|
'data/alien/nation/galacticsound.ruleset',
|
||
| translations/core/POTFILES.in | ||
|---|---|---|
|
data/multiplayer/techs.ruleset
|
||
|
data/multiplayer/terrain.ruleset
|
||
|
data/multiplayer/units.ruleset
|
||
|
data/multiplayer/script.lua
|
||
|
data/granularity/actions.ruleset
|
||
|
data/granularity/buildings.ruleset
|
||
|
data/granularity/cities.ruleset
|
||
|
data/granularity/game.ruleset
|
||
|
data/granularity/governments.ruleset
|
||
|
data/granularity/script.lua
|
||
|
data/granularity/styles.ruleset
|
||
|
data/granularity/techs.ruleset
|
||
|
data/granularity/terrain.ruleset
|
||
|
data/granularity/units.ruleset
|
||
|
data/nation/american.ruleset
|
||
|
data/nation/animals.ruleset
|
||
|
data/nation/apache.ruleset
|
||