mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 00:16:45 +00:00
30 lines
1.1 KiB
Makefile
30 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="cxxtools"
|
|
PKG_VERSION="3.0"
|
|
PKG_SHA256="07b18037fb0983f6292f5c8d53e2369e9e7a9711df2c9ad50838aacbc8c62f7c"
|
|
PKG_LICENSE="GPL-2"
|
|
PKG_SITE="http://www.tntnet.org/cxxtools.html"
|
|
PKG_URL="http://www.tntnet.org/download/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="toolchain:host openssl:host"
|
|
PKG_DEPENDS_TARGET="toolchain cxxtools:host openssl"
|
|
PKG_LONGDESC="Cxxtools is a collection of general-purpose C++ classes."
|
|
PKG_BUILD_FLAGS="+pic"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="--disable-demos --with-atomictype=pthread --disable-unittest"
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-static --disable-shared --disable-demos --with-atomictype=pthread --disable-unittest"
|
|
|
|
post_makeinstall_host() {
|
|
rm -rf ${TOOLCHAIN}/bin/cxxtools-config
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
cp ${PKG_NAME}-config ${TOOLCHAIN}/bin
|
|
sed -e "s:\(['= ]\)/usr:\\1${PKG_ORIG_SYSROOT_PREFIX}/usr:g" -i ${TOOLCHAIN}/bin/${PKG_NAME}-config
|
|
chmod +x ${TOOLCHAIN}/bin/${PKG_NAME}-config
|
|
|
|
rm -rf ${INSTALL}/usr/bin
|
|
}
|