41282cbdd6
Misc fixes and improvements all over the place... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Floris Bos <bos@je-eigen-domein.nl> Cc: Pascal de Bruijn <pmjdebruijn@pcode.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# rpi-userland
|
|
#
|
|
################################################################################
|
|
|
|
RPI_USERLAND_VERSION = b834074d0c0d9d7e64c133ab14ed691999cee990
|
|
RPI_USERLAND_SITE = $(call github,raspberrypi,userland,$(RPI_USERLAND_VERSION))
|
|
RPI_USERLAND_LICENSE = BSD-3c
|
|
RPI_USERLAND_LICENSE_FILES = LICENCE
|
|
RPI_USERLAND_INSTALL_STAGING = YES
|
|
RPI_USERLAND_CONF_OPTS = -DVMCS_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_C_FLAGS="-DVCFILED_LOCKFILE=\\\"/var/run/vcfiled.pid\\\""
|
|
|
|
RPI_USERLAND_PROVIDES = libegl libgles libopenmax libopenvg
|
|
|
|
ifeq ($(BR2_PACKAGE_RPI_USERLAND_START_VCFILED),y)
|
|
define RPI_USERLAND_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D package/rpi-userland/S94vcfiled \
|
|
$(TARGET_DIR)/etc/init.d/S94vcfiled
|
|
endef
|
|
endif
|
|
|
|
define RPI_USERLAND_POST_TARGET_CLEANUP
|
|
rm -f $(TARGET_DIR)/etc/init.d/vcfiled
|
|
rm -f $(TARGET_DIR)/usr/share/install/vcfiled
|
|
rmdir --ignore-fail-on-non-empty $(TARGET_DIR)/usr/share/install
|
|
rm -Rf $(TARGET_DIR)/usr/src
|
|
endef
|
|
RPI_USERLAND_POST_INSTALL_TARGET_HOOKS += RPI_USERLAND_POST_TARGET_CLEANUP
|
|
|
|
$(eval $(cmake-package))
|