2013-07-19 00:35:52 +00:00
|
|
|
#!/bin/bash
|
2009-03-18 12:02:53 +00:00
|
|
|
|
2011-01-09 20:26:03 +00:00
|
|
|
################################################################################
|
|
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
2012-02-29 12:11:22 +00:00
|
|
|
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
2011-01-09 20:26:03 +00:00
|
|
|
#
|
|
|
|
# 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; either version 2, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
#
|
|
|
|
# This Program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
2012-02-29 12:11:22 +00:00
|
|
|
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
2011-01-09 20:26:03 +00:00
|
|
|
# http://www.gnu.org/copyleft/gpl.html
|
|
|
|
################################################################################
|
|
|
|
|
2010-07-21 16:54:45 +00:00
|
|
|
. config/options $1
|
2009-03-18 12:02:53 +00:00
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
2013-10-14 13:24:33 +00:00
|
|
|
echo "usage: $0 package_name[:<host|target|init|bootstrap|hosttools>]"
|
2009-03-18 12:02:53 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
# set defaults
|
|
|
|
PKG_CONFIGURE_SCRIPT=""
|
|
|
|
PKG_MAKE_OPTS=""
|
|
|
|
PKG_MAKEINSTALL_OPTS=""
|
|
|
|
|
|
|
|
PACKAGE_NAME=$(echo $1 | awk -F : '{print $1}')
|
|
|
|
TARGET=$(echo $1 | awk -F : '{print $2}')
|
|
|
|
if [ -z "$TARGET" ]; then
|
|
|
|
TARGET="target"
|
|
|
|
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 21:01:08 +00: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 12:02:53 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
unset INSTALL
|
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
mkdir -p $STAMPS/$PACKAGE_NAME
|
|
|
|
STAMP=$STAMPS/$PACKAGE_NAME/build_$TARGET
|
2009-03-18 12:02:53 +00:00
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
$SCRIPTS/unpack $PACKAGE_NAME
|
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 21:01:08 +00:00
|
|
|
|
2013-12-13 21:33:16 +00:00
|
|
|
# ensure $PKG_BUILD is there. (installer? PKG_URL="")
|
|
|
|
if [ ! -d $PKG_BUILD ] ; then
|
|
|
|
mkdir $PKG_BUILD
|
|
|
|
fi
|
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
if [ -f $PKG_DIR/package.mk ]; then
|
|
|
|
if [ -f $STAMP -a $PKG_DIR/package.mk -nt $STAMP ]; then
|
|
|
|
rm -f $STAMP
|
|
|
|
fi
|
|
|
|
elif [ -f $PKG_DIR/build ]; then
|
|
|
|
if [ -f $STAMP -a $PKG_DIR/build -nt $STAMP ]; then
|
|
|
|
rm -f $STAMP
|
|
|
|
fi
|
2009-03-18 12:02:53 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f $STAMP ]; then
|
|
|
|
rm -f $STAMP
|
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
if [ -f $PKG_DIR/package.mk ]; then
|
|
|
|
printf "%${BUILD_INDENT}c BUILD $PACKAGE_NAME ($TARGET)\n" ' '>&$SILENT_OUT
|
|
|
|
elif [ -f $PKG_DIR/build ]; then
|
|
|
|
printf "%${BUILD_INDENT}c BUILD $PACKAGE_NAME (deprecated packageformat, please convert soon!)\n" ' '>&$SILENT_OUT
|
|
|
|
fi
|
2012-10-22 00:00:23 +00:00
|
|
|
export BUILD_INDENT=$((${BUILD_INDENT:-1}+$BUILD_INDENT_SIZE))
|
2009-03-18 12:02:53 +00:00
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
if [ -f $PKG_DIR/package.mk ]; then
|
2013-10-14 13:24:33 +00:00
|
|
|
if [ "$TARGET" = "bootstrap" -o "$TARGET" = "init" ]; then
|
2013-08-05 22:48:16 +00:00
|
|
|
setup_toolchain target
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "hosttools" ]; then
|
|
|
|
setup_toolchain host
|
2013-08-05 22:48:16 +00:00
|
|
|
else
|
|
|
|
setup_toolchain $TARGET
|
|
|
|
fi
|
2010-07-21 19:31:32 +00:00
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
# unset functions
|
|
|
|
unset -f pre_build_target
|
|
|
|
unset -f pre_configure_target
|
|
|
|
unset -f configure_target
|
|
|
|
unset -f post_configure_target
|
|
|
|
unset -f pre_make_target
|
|
|
|
unset -f make_target
|
|
|
|
unset -f post_make_target
|
|
|
|
unset -f pre_makeinstall_target
|
|
|
|
unset -f makeinstall_target
|
|
|
|
unset -f post_makeinstall_target
|
2013-03-29 13:17:24 +00:00
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
unset -f pre_build_host
|
|
|
|
unset -f pre_configure_host
|
|
|
|
unset -f configure_host
|
|
|
|
unset -f post_configure_host
|
|
|
|
unset -f pre_make_host
|
|
|
|
unset -f make_host
|
|
|
|
unset -f post_make_host
|
|
|
|
unset -f pre_makeinstall_host
|
|
|
|
unset -f makeinstall_host
|
|
|
|
unset -f post_makeinstall_host
|
2010-11-25 17:30:01 +00:00
|
|
|
|
2013-10-14 13:24:33 +00:00
|
|
|
unset -f pre_build_init
|
|
|
|
unset -f pre_configure_init
|
|
|
|
unset -f configure_init
|
|
|
|
unset -f post_configure_init
|
|
|
|
unset -f pre_make_init
|
|
|
|
unset -f make_init
|
|
|
|
unset -f post_make_init
|
|
|
|
unset -f pre_makeinstall_init
|
|
|
|
unset -f makeinstall_init
|
|
|
|
unset -f post_makeinstall_init
|
|
|
|
|
2013-08-05 22:48:16 +00:00
|
|
|
unset -f pre_build_bootstrap
|
|
|
|
unset -f pre_configure_bootstrap
|
|
|
|
unset -f configure_bootstrap
|
|
|
|
unset -f post_configure_bootstrap
|
|
|
|
unset -f pre_make_bootstrap
|
|
|
|
unset -f make_bootstrap
|
|
|
|
unset -f post_make_bootstrap
|
|
|
|
unset -f pre_makeinstall_bootstrap
|
|
|
|
unset -f makeinstall_bootstrap
|
|
|
|
unset -f post_makeinstall_bootstrap
|
2013-07-17 04:12:14 +00:00
|
|
|
|
2013-10-14 13:24:33 +00:00
|
|
|
unset -f pre_build_hosttools
|
|
|
|
unset -f pre_configure_hosttools
|
|
|
|
unset -f configure_hosttools
|
|
|
|
unset -f post_configure_hosttools
|
|
|
|
unset -f pre_make_hosttools
|
|
|
|
unset -f make_hosttools
|
|
|
|
unset -f post_make_hosttools
|
|
|
|
unset -f pre_makeinstall_hosttools
|
|
|
|
unset -f makeinstall_hosttools
|
|
|
|
unset -f post_makeinstall_hosttools
|
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
# configure TARGET build defaults
|
|
|
|
unset -v TARGET_CONFIGURE_OPTS
|
|
|
|
TARGET_CONFIGURE_OPTS="--host=$TARGET_NAME \
|
|
|
|
--build=$HOST_NAME \
|
|
|
|
--prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--disable-static \
|
|
|
|
--enable-shared"
|
|
|
|
|
|
|
|
# configure HOST build defaults
|
|
|
|
unset -v HOST_CONFIGURE_OPTS
|
|
|
|
HOST_CONFIGURE_OPTS="--host=$HOST_NAME \
|
|
|
|
--build=$HOST_NAME \
|
|
|
|
--prefix=$ROOT/$TOOLCHAIN \
|
|
|
|
--bindir=$ROOT/$TOOLCHAIN/bin \
|
|
|
|
--sbindir=$ROOT/$TOOLCHAIN/sbin \
|
|
|
|
--sysconfdir=$ROOT/$TOOLCHAIN/etc \
|
|
|
|
--libexecdir=$ROOT/$TOOLCHAIN/lib \
|
|
|
|
--localstatedir=$ROOT/$TOOLCHAIN/var \
|
|
|
|
--disable-static \
|
|
|
|
--enable-shared"
|
|
|
|
|
2013-10-14 13:24:33 +00:00
|
|
|
# configure INIT build defaults
|
|
|
|
unset -v INIT_CONFIGURE_OPTS
|
|
|
|
INIT_CONFIGURE_OPTS="--host=$TARGET_NAME \
|
|
|
|
--build=$HOST_NAME \
|
|
|
|
--prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--disable-static \
|
|
|
|
--enable-shared"
|
|
|
|
|
2013-08-05 22:48:16 +00:00
|
|
|
# configure BOOTSTRAP build defaults
|
|
|
|
unset -v BOOTSTRAP_CONFIGURE_OPTS
|
|
|
|
BOOTSTRAP_CONFIGURE_OPTS="--host=$TARGET_NAME \
|
|
|
|
--build=$HOST_NAME \
|
|
|
|
--prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--disable-static \
|
|
|
|
--enable-shared"
|
|
|
|
|
2013-10-14 13:24:33 +00:00
|
|
|
# configure HOSTTOOLS build defaults
|
|
|
|
unset -v HOSTTOOLS_CONFIGURE_OPTS
|
|
|
|
HOSTTOOLS_CONFIGURE_OPTS="--host=$HOST_NAME \
|
|
|
|
--build=$HOST_NAME \
|
|
|
|
--prefix=$ROOT/$TOOLCHAIN \
|
|
|
|
--bindir=$ROOT/$TOOLCHAIN/bin \
|
|
|
|
--sbindir=$ROOT/$TOOLCHAIN/sbin \
|
|
|
|
--sysconfdir=$ROOT/$TOOLCHAIN/etc \
|
|
|
|
--libexecdir=$ROOT/$TOOLCHAIN/lib \
|
|
|
|
--localstatedir=$ROOT/$TOOLCHAIN/var \
|
|
|
|
--disable-static \
|
|
|
|
--enable-shared"
|
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
# include buildfile
|
|
|
|
. $PKG_DIR/package.mk
|
|
|
|
|
|
|
|
if [ "$TARGET" = "target" ]; then
|
|
|
|
for p in $PKG_BUILD_DEPENDS_TARGET; do
|
|
|
|
$SCRIPTS/build $p
|
|
|
|
done
|
|
|
|
elif [ "$TARGET" = "host" ]; then
|
|
|
|
for p in $PKG_BUILD_DEPENDS_HOST; do
|
|
|
|
$SCRIPTS/build $p
|
|
|
|
done
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "init" ]; then
|
|
|
|
for p in $PKG_BUILD_DEPENDS_INIT; do
|
|
|
|
$SCRIPTS/build $p
|
|
|
|
done
|
2013-08-05 22:48:16 +00:00
|
|
|
elif [ "$TARGET" = "bootstrap" ]; then
|
|
|
|
for p in $PKG_BUILD_DEPENDS_BOOTSTRAP; do
|
|
|
|
$SCRIPTS/build $p
|
|
|
|
done
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "hosttools" ]; then
|
|
|
|
for p in $PKG_BUILD_DEPENDS_HOSTTOOLS; do
|
|
|
|
$SCRIPTS/build $p
|
|
|
|
done
|
2013-07-17 04:12:14 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$PKG_AUTORECONF" = yes ]; then
|
|
|
|
$SCRIPTS/autoreconf $PACKAGE_NAME
|
|
|
|
fi
|
|
|
|
|
|
|
|
# virtual packages dont must be build, they only contains dependencies, so dont go further here
|
|
|
|
if [ ! "$PKG_SECTION" = "virtual" ]; then
|
|
|
|
|
|
|
|
# configure other variables
|
2013-10-14 13:24:33 +00:00
|
|
|
if [ "$TARGET" = "target" ]; then
|
|
|
|
INSTALL=$ROOT/$PKG_BUILD/.install_pkg
|
|
|
|
elif [ "$TARGET" = "init" ]; then
|
|
|
|
INSTALL=$ROOT/$PKG_BUILD/.install_init
|
|
|
|
fi
|
2013-07-17 04:12:14 +00:00
|
|
|
|
2013-10-25 18:48:14 +00:00
|
|
|
# clean up
|
|
|
|
if [ ! -z "$INSTALL" ] ; then
|
|
|
|
if [ -d "$INSTALL" ] ; then
|
|
|
|
rm -rf $INSTALL
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2013-07-17 04:12:14 +00:00
|
|
|
# setup configure script
|
|
|
|
if [ -z "$PKG_CONFIGURE_SCRIPT" ]; then
|
|
|
|
PKG_CONFIGURE_SCRIPT="$ROOT/$PKG_BUILD/configure"
|
|
|
|
else
|
|
|
|
PKG_CONFIGURE_SCRIPT="$ROOT/$PKG_BUILD/$PKG_CONFIGURE_SCRIPT"
|
|
|
|
fi
|
|
|
|
if [ -z "$PKG_CMAKE_SCRIPT" ]; then
|
|
|
|
PKG_CMAKE_SCRIPT="$ROOT/$PKG_BUILD/CMakeLists.txt"
|
|
|
|
else
|
|
|
|
PKG_CMAKE_SCRIPT="$ROOT/$PKG_BUILD/$PKG_CMAKE_SCRIPT"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# include build template and build
|
|
|
|
if [ "$(type -t pre_build_$TARGET)" = "function" ]; then
|
|
|
|
pre_build_$TARGET
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $PKG_BUILD
|
|
|
|
|
2013-07-28 02:47:39 +00:00
|
|
|
if [ "$TARGET" = "target" ]; then
|
2013-07-17 04:12:14 +00:00
|
|
|
if [ -f "$PKG_CONFIGURE_SCRIPT" -o -f "$PKG_CMAKE_SCRIPT" ]; then
|
|
|
|
mkdir -p .$TARGET_NAME
|
|
|
|
cd .$TARGET_NAME
|
|
|
|
fi
|
|
|
|
elif [ "$TARGET" = "host" ]; then
|
|
|
|
if [ -f "$PKG_CONFIGURE_SCRIPT" -o -f "$PKG_CMAKE_SCRIPT" ]; then
|
|
|
|
mkdir -p .$HOST_NAME
|
|
|
|
cd .$HOST_NAME
|
|
|
|
fi
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "init" ]; then
|
|
|
|
if [ -f "$PKG_CONFIGURE_SCRIPT" -o -f "$PKG_CMAKE_SCRIPT" ]; then
|
|
|
|
mkdir -p .$TARGET_NAME-init
|
|
|
|
cd .$TARGET_NAME-init
|
|
|
|
fi
|
2013-08-05 22:48:16 +00:00
|
|
|
elif [ "$TARGET" = "bootstrap" ]; then
|
|
|
|
if [ -f "$PKG_CONFIGURE_SCRIPT" -o -f "$PKG_CMAKE_SCRIPT" ]; then
|
|
|
|
mkdir -p .$TARGET_NAME-bootstrap
|
|
|
|
cd .$TARGET_NAME-bootstrap
|
|
|
|
fi
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "hosttools" ]; then
|
|
|
|
if [ -f "$PKG_CONFIGURE_SCRIPT" -o -f "$PKG_CMAKE_SCRIPT" ]; then
|
|
|
|
mkdir -p .$TARGET_NAME-hosttools
|
|
|
|
cd .$TARGET_NAME-hosttools
|
|
|
|
fi
|
2013-07-17 04:12:14 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# configure
|
|
|
|
if [ "$(type -t pre_configure_$TARGET)" = "function" ]; then
|
|
|
|
pre_configure_$TARGET
|
|
|
|
fi
|
|
|
|
if [ "$(type -t configure_$TARGET)" = "function" ]; then
|
|
|
|
configure_$TARGET
|
|
|
|
elif [ -f "$PKG_CONFIGURE_SCRIPT" ]; then
|
|
|
|
if [ "$TARGET" = "target" ]; then
|
|
|
|
$PKG_CONFIGURE_SCRIPT $TARGET_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_TARGET
|
|
|
|
elif [ "$TARGET" = "host" ]; then
|
|
|
|
$PKG_CONFIGURE_SCRIPT $HOST_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_HOST
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "init" ]; then
|
|
|
|
$PKG_CONFIGURE_SCRIPT $INIT_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_INIT
|
2013-08-05 22:48:16 +00:00
|
|
|
elif [ "$TARGET" = "bootstrap" ]; then
|
|
|
|
$PKG_CONFIGURE_SCRIPT $BOOTSTRAP_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_BOOTSTRAP
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "hosttools" ]; then
|
|
|
|
$PKG_CONFIGURE_SCRIPT $HOSTTOOLS_CONFIGURE_OPTS $PKG_CONFIGURE_OPTS_HOSTTOOLS
|
2013-07-17 04:12:14 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$(type -t post_configure_$TARGET)" = "function" ]; then
|
|
|
|
post_configure_$TARGET
|
|
|
|
fi
|
|
|
|
|
|
|
|
# make
|
|
|
|
if [ "$(type -t pre_make_$TARGET)" = "function" ]; then
|
|
|
|
pre_make_$TARGET
|
|
|
|
fi
|
|
|
|
if [ "$(type -t make_$TARGET)" = "function" ]; then
|
|
|
|
make_$TARGET
|
|
|
|
else
|
|
|
|
if [ "$TARGET" = "target" ]; then
|
|
|
|
make $PKG_MAKE_OPTS_TARGET
|
|
|
|
elif [ "$TARGET" = "host" ]; then
|
|
|
|
make $PKG_MAKE_OPTS_HOST
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "init" ]; then
|
|
|
|
make $PKG_MAKE_OPTS_INIT
|
2013-08-05 22:48:16 +00:00
|
|
|
elif [ "$TARGET" = "bootstrap" ]; then
|
|
|
|
make $PKG_MAKE_OPTS_BOOTSTRAP
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "hosttools" ]; then
|
|
|
|
make $PKG_MAKE_OPTS_HOSTTOOLS
|
2013-07-17 04:12:14 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$(type -t post_make_$TARGET)" = "function" ]; then
|
|
|
|
post_make_$TARGET
|
|
|
|
fi
|
|
|
|
|
|
|
|
# make install
|
|
|
|
if [ "$(type -t pre_makeinstall_$TARGET)" = "function" ]; then
|
|
|
|
pre_makeinstall_$TARGET
|
|
|
|
fi
|
|
|
|
if [ "$(type -t makeinstall_$TARGET)" = "function" ]; then
|
|
|
|
makeinstall_$TARGET
|
|
|
|
else
|
|
|
|
if [ "$TARGET" = "target" ]; then
|
|
|
|
$MAKEINSTALL $PKG_MAKEINSTALL_OPTS_TARGET
|
|
|
|
make install DESTDIR=$INSTALL $PKG_MAKEINSTALL_OPTS_TARGET
|
|
|
|
elif [ "$TARGET" = "host" ]; then
|
|
|
|
make install $PKG_MAKEINSTALL_OPTS_HOST
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "init" ]; then
|
|
|
|
$MAKEINSTALL $PKG_MAKEINSTALL_OPTS_INIT
|
|
|
|
make install DESTDIR=$INSTALL $PKG_MAKEINSTALL_OPTS_INIT
|
2013-08-05 22:48:16 +00:00
|
|
|
elif [ "$TARGET" = "bootstrap" ]; then
|
|
|
|
$MAKEINSTALL $PKG_MAKEINSTALL_OPTS_BOOTSTRAP
|
2013-10-14 13:24:33 +00:00
|
|
|
elif [ "$TARGET" = "hosttools" ]; then
|
|
|
|
make install $PKG_MAKEINSTALL_OPTS_HOSTTOOLS
|
2013-07-17 04:12:14 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$(type -t post_makeinstall_$TARGET)" = "function" ]; then
|
|
|
|
post_makeinstall_$TARGET
|
|
|
|
fi
|
|
|
|
|
2013-10-14 13:24:33 +00:00
|
|
|
if [ "$TARGET" = "target" -o "$TARGET" = "init" ]; then
|
2013-12-13 12:07:31 +00:00
|
|
|
if [ -d $INSTALL ] ; then
|
|
|
|
rm -rf $INSTALL/usr/include
|
|
|
|
rm -rf $INSTALL/usr/lib/pkgconfig
|
|
|
|
rm -rf $INSTALL/usr/share/aclocal
|
|
|
|
rm -rf $INSTALL/usr/share/bash-completion
|
|
|
|
rm -rf $INSTALL/usr/share/doc
|
|
|
|
rm -rf $INSTALL/usr/share/gtk-doc
|
|
|
|
rm -rf $INSTALL/usr/share/info
|
|
|
|
rm -rf $INSTALL/usr/share/locale
|
|
|
|
rm -rf $INSTALL/usr/share/man
|
|
|
|
rm -rf $INSTALL/usr/share/pkgconfig
|
|
|
|
find $INSTALL/lib -name "*.la" -exec rm -rf "{}" ";" 2>/dev/null || true
|
|
|
|
find $INSTALL/usr/lib -name "*.la" -exec rm -rf "{}" ";" 2>/dev/null || true
|
|
|
|
find $INSTALL/lib -name "*.a" -exec rm -rf "{}" ";" 2>/dev/null || true
|
|
|
|
find $INSTALL/usr/lib -name "*.a" -exec rm -rf "{}" ";" 2>/dev/null || true
|
|
|
|
find $INSTALL/lib -name "*.so*T" -exec rm -rf "{}" ";" 2>/dev/null || true
|
|
|
|
find $INSTALL/usr/lib -name "*.so*T" -exec rm -rf "{}" ";" 2>/dev/null || true
|
|
|
|
find $INSTALL -type d -exec rmdir -p "{}" ";" 2>/dev/null || true
|
|
|
|
|
|
|
|
if [ ! "$DEBUG" = yes ]; then
|
|
|
|
$STRIP `find $INSTALL -name "*.so"` 2>/dev/null || echo "Information: no *.so libs found"
|
|
|
|
$STRIP `find $INSTALL -name "*.so.[0-9]*"` 2>/dev/null || echo "Information: no *.so.[0-9]* libs found"
|
|
|
|
fi
|
2013-07-17 04:12:14 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $ROOT
|
|
|
|
|
|
|
|
fi # ! "$PKG_SECTION" = "virtual"
|
|
|
|
|
|
|
|
elif [ -f $PKG_DIR/meta ]; then
|
|
|
|
|
|
|
|
for p in $PKG_BUILD_DEPENDS; do
|
|
|
|
$SCRIPTS/build $p
|
2009-03-18 12:02:53 +00:00
|
|
|
done
|
2013-07-17 04:12:14 +00:00
|
|
|
|
|
|
|
if [ "$PKG_AUTORECONF" = yes ]; then
|
|
|
|
$SCRIPTS/autoreconf $PACKAGE_NAME
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f $PKG_DIR/build ]; then
|
|
|
|
$PKG_DIR/build $@ >&$VERBOSE_OUT
|
|
|
|
|
|
|
|
if [ ! "$DEBUG" = yes ]; then
|
|
|
|
$STRIP `find $BUILD/$PACKAGE_NAME* -name "*.so"` 2>/dev/null || \
|
|
|
|
echo "Information: no *.so libs found"
|
|
|
|
$STRIP `find $BUILD/$PACKAGE_NAME* -name "*.so.[0-9]*"` 2>/dev/null ||\
|
|
|
|
echo "Information: no *.so.[0-9]* libs found"
|
|
|
|
fi
|
|
|
|
|
|
|
|
elif [ -f $PKG_BUILD/Makefile ]; then
|
|
|
|
$SCRIPTS/build toolchain
|
|
|
|
make -C $PKG_BUILD >&$VERBOSE_OUT
|
|
|
|
|
|
|
|
elif [ -f $PKG_BUILD/$PACKAGE_NAME.c ]; then
|
|
|
|
$SCRIPTS/build toolchain
|
|
|
|
make -C $PKG_BUILD $PACKAGE_NAME >&$VERBOSE_OUT
|
|
|
|
|
|
|
|
fi # -f $PKG_DIR/build
|
|
|
|
fi # -f $PKG_DIR/meta
|
|
|
|
|
2013-12-14 21:51:39 +00:00
|
|
|
# TODO: slow...
|
|
|
|
for i in `find $SYSROOT_PREFIX/usr/lib/ -name "*.la" 2>/dev/null`; do \
|
2013-07-17 04:12:14 +00:00
|
|
|
$SED "s:\(['= ]\)/usr:\\1$SYSROOT_PREFIX/usr:g" $i; \
|
|
|
|
done
|
2009-03-18 12:02:53 +00:00
|
|
|
|
2009-12-19 00:35:31 +00:00
|
|
|
for i in `sed -n "s/^\([^#].*\)=\".*$/\1/p" $PROJECT_DIR/$PROJECT/options | grep -v "#"`; do
|
2009-03-18 12:02:53 +00:00
|
|
|
eval val=\$$i
|
|
|
|
echo "STAMP_$i=\"$val\"" >> $STAMP
|
|
|
|
done
|
|
|
|
fi
|