move package scummvm:

- no more need, move to pkg-archive branch
This commit is contained in:
Stephan Raue 2009-10-28 09:32:47 +01:00
parent 9b57606199
commit 08ac5dbc4c
4 changed files with 0 additions and 70 deletions

View File

@ -1,26 +0,0 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
$SCRIPTS/build SDL
$SCRIPTS/build alsa-lib
$SCRIPTS/build zlib
cd $PKG_BUILD
# export CXX=$TARGET_CXX
./configure --host=openelec-$TARGET_ARCH \
--prefix=/usr \
--backend=sdl \
--enable-debug \
--enable-alsa \
--disable-mt32emu \
--disable-vorbis \
--disable-tremor \
--disable-mad \
--disable-flac \
--enable-zlib \
--disable-mpeg2 \
--disable-fluidsynth \
--disable-nasm
make

View File

@ -1,16 +0,0 @@
#!/bin/sh
. config/options
$SCRIPTS/install SDL
$SCRIPTS/install alsa-lib
mkdir -p $INSTALL/usr/bin
cp $PKG_BUILD/scummvm $INSTALL/usr/bin
#mkdir -p $INSTALL/usr/share/applications
#cp $PACKAGES/$1*/config/$1.desktop $INSTALL/usr/share/applications
mkdir -p $INSTALL/usr/share/scummvm
cp $PKG_BUILD/dists/engine-data/* $INSTALL/usr/share/scummvm
cp $PKG_BUILD/icons/scummvm.xpm $INSTALL/usr/share/scummvm

View File

@ -1,27 +0,0 @@
diff -Naur scummvm-0.9.1.orig/configure scummvm-0.9.1/configure
--- scummvm-0.9.1.orig/configure 2007-01-13 13:45:19.000000000 +0100
+++ scummvm-0.9.1/configure 2007-01-13 13:45:42.000000000 +0100
@@ -753,6 +753,23 @@
if test -n "$_host"; then
# Cross-compiling mode - add your target here if needed
case "$_host" in
+ openelec-i386)
+ echo "Cross-compiling to $_host, forcing endianness and type sizes"
+ DEFINES="$DEFINES -DUNIX"
+ _def_endianness='#define SCUMM_LITTLE_ENDIAN'
+ type_1_byte='char'
+ type_2_byte='short'
+ type_4_byte='int'
+ ;;
+ openelec-powerpc)
+ echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
+ DEFINES="$DEFINES -DUNIX"
+ _def_endianness='#define SCUMM_BIG_ENDIAN'
+ _def_align='#define SCUMM_NEED_ALIGNMENT'
+ type_1_byte='char'
+ type_2_byte='short'
+ type_4_byte='int'
+ ;;
linupy|arm-riscos)
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
DEFINES="$DEFINES -DUNIX"

View File

@ -1 +0,0 @@
http://prdownloads.sourceforge.net/scummvm/scummvm-0.13.0.tar.bz2