Browse Source

added debian package naming

master
poikilos 7 years ago
committed by Jacob Gustafson
parent
commit
251cb480cc
  1. 2
      README.md
  2. 6
      etc/minetestserver-install-git-all-backends.sh

2
README.md

@ -12,7 +12,7 @@ ENLIVEN is a subgame for minetest with the goals of providing immersion and less
### Planned Features ### Planned Features
* maintain a table of short descriptions of mods * maintain a table of short descriptions of mods
* see also EnlivenMinetest/etc/game-install-enliven-testing.sh * see also EnlivenMinetest/etc/game-install-enliven-testing.sh
* slimenodes fork: make glue replaceable with animal hide * slimenodes fork: make glue replaceable with animal hide; disable jump or reduce bouncy value, otherwise bouncing gets higher indefinitely
* https://github.com/minetest-mods/tutor * https://github.com/minetest-mods/tutor
* https://github.com/minetest-mods/chat_anticurse * https://github.com/minetest-mods/chat_anticurse
* https://github.com/minetest-mods/cozy (sitting and laying down player animations)--compare with emote https://github.com/minetest-mods/emote.git * https://github.com/minetest-mods/cozy (sitting and laying down player animations)--compare with emote https://github.com/minetest-mods/emote.git

6
etc/minetestserver-install-git-all-backends.sh

@ -23,7 +23,11 @@ if [ -f "`command -v apt`" ]; then
sudo apt -y install libncurses5-dev libgettextpo-dev doxygen libspatialindex-dev libpq-dev postgresql-server-dev-all sudo apt -y install libncurses5-dev libgettextpo-dev doxygen libspatialindex-dev libpq-dev postgresql-server-dev-all
# added libpq-dev postgresql-server-dev-all (or specific version) are BOTH needed for PostgreSQL development as per https://stackoverflow.com/questions/13920383/findpostgresql-cmake-wont-work-on-ubuntu # added libpq-dev postgresql-server-dev-all (or specific version) are BOTH needed for PostgreSQL development as per https://stackoverflow.com/questions/13920383/findpostgresql-cmake-wont-work-on-ubuntu
# if you skip the above, the below says missing: GetText, Curses, ncurses, Redis, SpatialIndex, Doxygen # if you skip the above, the below says missing: GetText, Curses, ncurses, Redis, SpatialIndex, Doxygen
sudo apt -y install -y git build-essential libirrlicht-dev libgettextpo0 libfreetype6-dev cmake libbz2-dev libpng12-dev libjpeg8-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-openssl-dev libluajit-5.1-dev liblua5.1-0-dev libleveldb-dev sudo apt -y install git build-essential libirrlicht-dev libgettextpo0 libfreetype6-dev cmake libbz2-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-openssl-dev libluajit-5.1-dev liblua5.1-0-dev libleveldb-dev
# Ubuntu Xenial:
sudo apt -y install libpng12-dev libjpeg8-dev
# Debian:
sudo apt -y install libpng-dev libjpeg-dev
elif [ -f "`command -v pacman`" ]; then elif [ -f "`command -v pacman`" ]; then
sudo pacman -R --noconfirm minetest-server sudo pacman -R --noconfirm minetest-server
sudo pacman -R --noconfirm minetest sudo pacman -R --noconfirm minetest

Loading…
Cancel
Save