mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
games/fgo: Fixed doinst.sh.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
4ddf4ff73f
commit
89141f8887
4 changed files with 4 additions and 30 deletions
|
@ -1,21 +0,0 @@
|
|||
|
||||
Changes to this SlackBuild since FGo! 1.4.5
|
||||
-------------------------------------------
|
||||
|
||||
* Script modified according to new icon names and paths. If you are building
|
||||
a package for a version of FGo! older than 1.5.0, icons will not be linked
|
||||
correctly: in that case please modify this script accordingly, or use its
|
||||
previous version, or (recommended) download the latest FGo! release.
|
||||
|
||||
* Removed presets for default FlightGear paths, as they are not included in
|
||||
the upstream package anyway.
|
||||
|
||||
* 1.5.1, build 2: revision and cleanup.
|
||||
|
||||
* 1.5.2: version update (new Japanese localization).
|
||||
|
||||
* 1.5.4: version update, revision and cleanup. Removed 'fgo.desktop' from the
|
||||
package, as it was moved to the FGo! upstream release. Modified symlinking
|
||||
to icons, according to their new location.
|
||||
|
||||
* 1.5.5: version update.
|
|
@ -4,8 +4,3 @@ where users can select an aircraft, airport, runway, parking position
|
|||
and scenario, with a text window which provides a way to specify more
|
||||
advanced command-line options that will be passed to FlightGear. These
|
||||
features allow FGo! to keep a minimalist but powerful design.
|
||||
|
||||
NOTE: FGo! versions equal or greater than 1.5.0 are compatible with
|
||||
FlightGear 3.0 and its new apt.dat database format. If you intend to use
|
||||
this SlackBuild for a version of FGo! older than 1.5.5, please read the
|
||||
CHANGELOG file included in this package.
|
||||
|
|
|
@ -8,7 +8,7 @@ config() {
|
|||
fi
|
||||
}
|
||||
|
||||
for conf in /opt/fgo/data/config/* ; do
|
||||
for conf in /opt/fgo/data/config/*.new ; do
|
||||
config ${conf}
|
||||
done
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for fgo
|
||||
|
||||
# Copyright 2013-2015 Philip Lacroix <slackph at posteo dot de>
|
||||
# Copyright 2013-2017 Philip Lacroix <slackph at posteo dot de>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -24,12 +24,12 @@
|
|||
|
||||
PRGNAM=fgo
|
||||
VERSION=${VERSION:-1.5.5}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue