Browse Source
git-svn-id: svn://svn.opensde.net/opensde/package/trunk@21355 10447126-35f2-4685-b0cf-6dd780d3921fearly
Minto van der Sluis
18 years ago
2 changed files with 44 additions and 7 deletions
@ -0,0 +1,35 @@
|
||||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
||||
# |
||||
# Filename: package/.../dangerdeep/dangerdeep.conf |
||||
# Copyright (C) 2007 The OpenSDE Project |
||||
# |
||||
# 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. |
||||
# --- SDE-COPYRIGHT-NOTE-END --- |
||||
|
||||
dftd_custmain() { |
||||
# Replace hardcoded paths with configured ones. |
||||
sed -i -e 's,/usr/X11R6/lib,'$(pkgprefix libdir xorg-server)',g' \ |
||||
-e 's,/usr/include/GL,'$(pkgprefix includedir xorg-server)'/GL,g' \ |
||||
-e 's,/usr/lib,'$(pkgprefix libdir fftw3)',g' SConstruct |
||||
|
||||
# Start building and tell the builder where the app should |
||||
# be installed. |
||||
var_append sconsopt ' ' "installbindir=$root/$prefix/games \ |
||||
datadir=$root/$datadir/games/$pkg version=$ver" |
||||
scons devel=1 $sconsopt |
||||
|
||||
# Make sure to install datafiles as well. |
||||
cp build/linux/dangerdeep $root/$prefix/games/ -fr --reply=yes |
||||
unzip `match_source_file -p *.zip` && cp data \ |
||||
$root/$datadir/games/$pkg -fr --reply=yes |
||||
} |
||||
|
||||
# Scons builds are not yet properly supported so we have to do it |
||||
# all ourselves. |
||||
custmain="dftd_custmain" |
Loading…
Reference in new issue