0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-02-07 17:29:52 +00:00
Rudi Heitbaum 60884fd2ce lzo: update target toolchain depend
was able to cause the build failure doing
- scripts/build iptables
- make image
2024-07-16 09:23:34 +00:00

21 lines
770 B
Makefile

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
PKG_NAME="lzo"
PKG_VERSION="2.10"
PKG_SHA256="c0f892943208266f9b6543b3ae308fab6284c5c90e627931446fb49b4221a072"
PKG_LICENSE="GPL"
PKG_SITE="http://www.oberhumer.com/opensource/lzo"
PKG_URL="http://www.oberhumer.com/opensource/lzo/download/${PKG_NAME}-${PKG_VERSION}.tar.gz"
PKG_DEPENDS_HOST="cmake:host ninja:host"
PKG_DEPENDS_TARGET="cmake:host gcc:host ninja:host"
PKG_LONGDESC="A data compression library which is suitable for data de-/compression."
PKG_BUILD_FLAGS="+pic"
PKG_CMAKE_OPTS_HOST="-DENABLE_SHARED=OFF -DENABLE_STATIC=ON"
PKG_CMAKE_OPTS_TARGET="-DENABLE_SHARED=OFF -DENABLE_STATIC=ON"
post_makeinstall_target() {
rm -rf ${INSTALL}/usr/libexec
}