* Initial fully buildable/bootable Odin Support * Rework NX-Boot to FAT32 Boot for shared usage between switch and odin * Move shared packages from switch/odin to main packages folder
		
			
				
	
	
		
			24 lines
		
	
	
		
			887 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			887 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0-or-later
 | |
| # Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
 | |
| # Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
 | |
| 
 | |
| PKG_NAME="libXrender"
 | |
| PKG_VERSION="0.9.11"
 | |
| PKG_SHA256="bc53759a3a83d1ff702fb59641b3d2f7c56e05051fa0cfa93501166fa782dc24"
 | |
| PKG_LICENSE="OSS"
 | |
| PKG_SITE="https://www.X.org"
 | |
| PKG_URL="https://xorg.freedesktop.org/archive/individual/lib/${PKG_NAME}-${PKG_VERSION}.tar.xz"
 | |
| PKG_DEPENDS_TARGET="toolchain util-macros libX11"
 | |
| PKG_LONGDESC="The X Rendering Extension introduces digital image composition within the X Window System."
 | |
| PKG_BUILD_FLAGS="+pic"
 | |
| 
 | |
| PKG_CONFIGURE_OPTS_TARGET="--enable-malloc0returnsnull"
 | |
| 
 | |
| if [ "${PROJECT}" = "L4T" -o "${DEVICE}" = "Odin" ]; then
 | |
|   PKG_CONFIGURE_OPTS_TARGET="${PKG_CONFIGURE_OPTS_TARGET/--disable-shared/--enable-shared}"
 | |
| fi
 | |
| 
 | |
| post_configure_target() {
 | |
|   libtool_remove_rpath libtool
 | |
| }
 |