forked from oe-alliance/e2openplugin-CrossEPG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_e2_sh4_ipbox99xx.sh
35 lines (27 loc) · 947 Bytes
/
make_e2_sh4_ipbox99xx.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
[ -d ./tmp ] && rm -rf ./tmp
DEVKIT_ROOT=/opt/STM/STLinux-2.3/devkit/sh4
CROSS=${DEVKIT_ROOT}/bin/sh4-linux-
export CFLAGS+="-I${DEVKIT_ROOT}/target/usr/include \
-I${DEVKIT_ROOT}/target/usr/include/libxml2 \
-I${DEVKIT_ROOT}/target/usr/include/python2.6"
export CC=${CROSS}gcc
export STRIP=${CROSS}strip
export SWIG=swig
export D=./tmp
export TARGET_ARCH=sh4
make && make install
if [ $? != 0 ]; then
echo compile error
exit 1
fi
mkdir -p tmp/CONTROL
cp contrib/control tmp/CONTROL/
VERSION=`cat src/version.h | grep RELEASE | sed "s/.*RELEASE \"//" | sed "s/\"//" | sed "s/\ /-/" | sed "s/\ /-/" | sed "s/(//" | sed "s/)//"`
echo "Package: enigma2-plugin-systemplugins-crossepg-ipbox99xx" >> tmp/CONTROL/control
echo "Version: $VERSION" >> tmp/CONTROL/control
echo "Architecture: sh4" >> tmp/CONTROL/control
sh ipkg-build -o root -g root tmp/
[ ! -d out ] && mkdir out
mv *.ipk out
echo "Package moved in `pwd`/out folder"