Annotation of elwix/build_3thpkg.sh, revision 1.1.2.1
1.1.2.1 ! misho 1: #!/bin/sh
! 2: #
! 3: # ELWIX test build script for cross compiling 3th party software
! 4: #
! 5: # (C) AITNET ltd - Sofia/Bulgaria <office@aitnet.org>
! 6: # by Michael Pounov <misho@elwix.org>
! 7: #
! 8: # $Id: build_3thparty.sh,v 1.6 2017/02/13 16:52:46 misho Exp $
! 9: #
! 10:
! 11: [ -r ./config/rc.elwix ] && . ./config/rc.elwix
! 12: if [ ! -r ./config/rc.3thparty_helper ]; then
! 13: echo
! 14: echo "ELWIX project is not configured - Missing rc.3thparty_helper script"
! 15: echo
! 16: exit 1
! 17: fi
! 18:
! 19: if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then
! 20: echo
! 21: echo "ELWIX project is not configured !?!"
! 22: echo
! 23: exit 1
! 24: fi
! 25: V=${VERSION}
! 26: [ -r ${CENV} ] && . ${CENV}
! 27: unset INSTALL
! 28: unset VERSION
! 29: VERSION="$V"
! 30:
! 31: if [ ! -d $BSDSRC ]; then
! 32: echo
! 33: echo "ELWIX project is not configured - missing BSD sources !?!"
! 34: echo
! 35: exit 1
! 36: fi
! 37:
! 38: if [ ! -d $DEST ]; then
! 39: echo
! 40: echo "ELWIX project is not configured - missing Dest directory !?!"
! 41: echo
! 42: exit 1
! 43: fi
! 44:
! 45: compile_3th()
! 46: {
! 47: echo "+++ Compile ELWIX 3th party software ..."
! 48:
! 49: BUILD_SH="./config/rc.3thparty_helper"
! 50:
! 51: echo all=$*
! 52: NAME=${1}
! 53: shift
! 54: if [ -z "${1}" ]; then
! 55: CBS=${CBUILD}
! 56: fi
! 57: shift
! 58: ENVS=""
! 59:
! 60: if [ -n "${1}" ]; then
! 61: ENVS="env $*"
! 62: fi
! 63:
! 64: echo cbs=$CBS
! 65: ${ENVS} ${BUILD_SH} ${NAME} ${CBS} ${PKG} ${TARGET_BUILD}
! 66: [ $? -ne 0 ] && exit 1
! 67:
! 68: echo "Done."
! 69: }
! 70:
! 71:
! 72: ### main()
! 73: # ./build_3thpkg.sh <name> [make] [env varz ...]
! 74: install -d ${PKG}
! 75: install -d ${PKG}/bin
! 76: install -d ${PKG}/etc
! 77: install -d ${PKG}/include
! 78: install -d ${PKG}/man
! 79: install -d ${PKG}/lib
! 80: install -d ${PKG}/libexec
! 81: install -d ${PKG}/sbin
! 82:
! 83: install -d ${ROMFS_USR2}
! 84: install -d ${ROMFS_USR2}/bin
! 85: install -d ${ROMFS_USR2}/etc
! 86: install -d ${ROMFS_USR2}/lib
! 87: install -d ${ROMFS_USR2}/libexec
! 88: install -d ${ROMFS_USR2}/sbin
! 89:
! 90: compile_3th $*
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>