initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
config BR2_PACKAGE_XAPP_XEYES
bool "xeyes"
select BR2_PACKAGE_XLIB_LIBX11
select BR2_PACKAGE_XLIB_LIBXEXT
select BR2_PACKAGE_XLIB_LIBXI
select BR2_PACKAGE_XLIB_LIBXMU
select BR2_PACKAGE_XLIB_LIBXT
help
X.Org xeyes application
+5
View File
@@ -0,0 +1,5 @@
# From https://lists.x.org/archives/xorg-announce/2021-August/003101.html
sha256 f8a17e23146bef1ab345a1e303c6749e42aaa7bcf4f25428afad41770721b6db xeyes-1.2.0.tar.bz2
sha512 2d1614614b3ba3d1ebaa0e9801a2e159389b94aaacafb962d326b7e6dc712c1eb2c12a50ceb10b3135cf0eee6ae86bbf84e73098deb08e73792f14a60616b4d8 xeyes-1.2.0.tar.bz2
# Locally computed
sha256 d8de1de40e16227d1eb4b19e95117ce3f990f71f71df096a2259b0bc9931e042 COPYING
+26
View File
@@ -0,0 +1,26 @@
################################################################################
#
# xapp_xeyes
#
################################################################################
XAPP_XEYES_VERSION = 1.2.0
XAPP_XEYES_SOURCE = xeyes-$(XAPP_XEYES_VERSION).tar.bz2
XAPP_XEYES_SITE = https://xorg.freedesktop.org/archive/individual/app
XAPP_XEYES_LICENSE = MIT
XAPP_XEYES_LICENSE_FILES = COPYING
XAPP_XEYES_DEPENDENCIES = \
xlib_libX11 \
xlib_libXext \
xlib_libXi \
xlib_libXmu \
xlib_libXt
ifeq ($(BR2_PACKAGE_XLIB_LIBXRENDER),y)
XAPP_XEYES_DEPENDENCIES += xlib_libXrender
XAPP_XEYES_CONF_OPTS += --with-xrender
else
XAPP_XEYES_CONF_OPTS += --without-xrender
endif
$(eval $(autotools-package))