2009-03-18 13:02:53 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2010-07-21 18:54:45 +02:00
|
|
|
. config/options $1
|
2009-03-18 13:02:53 +01:00
|
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
|
echo "usage: $0 package_name"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
if [ -n "$PKG_ARCH" -a ! "$PKG_ARCH" = "any" ]; then
|
|
|
|
|
echo "$PKG_ARCH" | grep -q "$TARGET_ARCH" || exit 0
|
|
|
|
|
echo "$PKG_ARCH" | grep -q "\-$TARGET_ARCH" && exit 0
|
2009-03-18 13:02:53 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
unset INSTALL
|
|
|
|
|
|
|
|
|
|
mkdir -p $STAMPS/$1
|
|
|
|
|
STAMP=$STAMPS/$1/build
|
|
|
|
|
|
|
|
|
|
$SCRIPTS/unpack $1
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
|
2009-03-18 13:02:53 +01:00
|
|
|
if [ -f $STAMP -a -f $PKG_DIR/need_build ]; then
|
|
|
|
|
$PKG_DIR/need_build $@
|
|
|
|
|
fi
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
|
2009-03-18 13:02:53 +01:00
|
|
|
if [ -f $STAMP -a $PKG_DIR/build -nt $STAMP ]; then
|
|
|
|
|
rm -f $STAMP
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ ! -f $STAMP ]; then
|
|
|
|
|
rm -f $STAMP
|
|
|
|
|
|
|
|
|
|
printf "%${INDENT}c BUILD $1\n" >&$SILENT_OUT
|
|
|
|
|
export INDENT=$((${INDENT:-1}+$INDENT_SIZE))
|
|
|
|
|
|
2010-07-21 21:31:32 +02:00
|
|
|
for p in $PKG_BUILD_DEPENDS; do
|
|
|
|
|
$SCRIPTS/build $p
|
|
|
|
|
done
|
|
|
|
|
|
2009-03-18 13:02:53 +01:00
|
|
|
if [ -f $PKG_DIR/build ]; then
|
|
|
|
|
$PKG_DIR/build $@ >&$VERBOSE_OUT
|
2009-05-17 23:13:56 +02:00
|
|
|
if [ "$DEBUG" = no ]; then
|
2010-05-21 11:00:32 +02:00
|
|
|
$STRIP `find $BUILD/$1* -name "*.so"` 2>/dev/null || \
|
2009-05-18 04:11:55 +02:00
|
|
|
echo "Information: no *.so libs found"
|
2010-05-21 11:00:32 +02:00
|
|
|
$STRIP `find $BUILD/$1* -name "*.so.[0-9]*"` 2>/dev/null ||\
|
2009-05-18 04:11:55 +02:00
|
|
|
echo "Information: no *.so.[0-9]* libs found"
|
2009-05-17 23:13:56 +02:00
|
|
|
fi
|
2009-03-18 13:02:53 +01:00
|
|
|
for i in `find $SYSROOT_PREFIX/usr/lib/ -name "*.la"`; do \
|
|
|
|
|
$SED "s:\(['= ]\)/usr:\\1$SYSROOT_PREFIX/usr:g" $i; \
|
|
|
|
|
done
|
2009-05-16 23:35:27 +02:00
|
|
|
elif [ -f $PKG_BUILD/Makefile ]; then
|
2009-03-18 13:02:53 +01:00
|
|
|
$SCRIPTS/build toolchain
|
2009-05-16 23:35:27 +02:00
|
|
|
make -C $PKG_BUILD >&$VERBOSE_OUT
|
2009-03-18 13:02:53 +01:00
|
|
|
for i in `find $SYSROOT_PREFIX/usr/lib/ -name "*.la"`; do \
|
|
|
|
|
$SED "s:\(['= ]\)/usr:\\1$SYSROOT_PREFIX/usr:g" $i; \
|
|
|
|
|
done
|
2009-05-16 23:35:27 +02:00
|
|
|
elif [ -f $PKG_BUILD/$1.c ]; then
|
2009-03-18 13:02:53 +01:00
|
|
|
$SCRIPTS/build toolchain
|
2009-05-16 23:35:27 +02:00
|
|
|
make -C $PKG_BUILD $1 >&$VERBOSE_OUT
|
2009-03-18 13:02:53 +01:00
|
|
|
fi
|
|
|
|
|
|
2009-12-19 01:35:31 +01:00
|
|
|
for i in `sed -n "s/^\([^#].*\)=\".*$/\1/p" $PROJECT_DIR/$PROJECT/options | grep -v "#"`; do
|
2009-03-18 13:02:53 +01:00
|
|
|
eval val=\$$i
|
|
|
|
|
echo "STAMP_$i=\"$val\"" >> $STAMP
|
|
|
|
|
done
|
|
|
|
|
fi
|