You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
|
|
# --- T2-COPYRIGHT-NOTE-BEGIN --- |
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|
# |
|
# T2 SDE: package/.../torcs/torcs.conf |
|
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|
# Copyright (C) 1998 - 2003 Clifford Wolf |
|
# |
|
# More information can be found in the files COPYING and README. |
|
# |
|
# This program is free software; you can redistribute it and/or modify |
|
# it under the terms of the GNU General Public License as published by |
|
# the Free Software Foundation; version 2 of the License. A copy of the |
|
# GNU General Public License can be found in the file COPYING. |
|
# --- T2-COPYRIGHT-NOTE-END --- |
|
|
|
bindir=$root/$SDECFG_PKG_GAMES_BINDIR |
|
datadir=$root/$SDECFG_PKG_GAMES_DATADIR |
|
|
|
autoextract=0 |
|
runconf=1 |
|
|
|
torcs_preconf() |
|
{ |
|
for x in `match_source_file -p src`; do |
|
echo "Extracting $x ..." |
|
tar $taropt $x |
|
done |
|
cd torcs-$ver |
|
apply_patchfiles |
|
# delete lingering x86 object files ... |
|
find -name '*.o' | xargs rm -fv |
|
} |
|
|
|
torcs_pi() |
|
{ |
|
cd $datadir/games/torcs/ |
|
for x in `match_source_file -p data`; do |
|
echo "Extracting $x ..." |
|
tar $taropt $x |
|
done |
|
chown -R root:root $datadir/games/torcs |
|
} |
|
|
|
hook_add preconf 3 torcs_preconf |
|
hook_add postinstall 5 torcs_pi |
|
|
|
var_append CC_WRAPPER_REMOVE " " "-mieee-fp" |
|
var_append CXX_WRAPPER_REMOVE " " "-mieee-fp" |
|
|
|
|