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
+17
View File
@@ -0,0 +1,17 @@
config BR2_PACKAGE_RATPOISON
bool "ratpoison"
depends on BR2_USE_MMU
depends on BR2_PACKAGE_XORG7
select BR2_PACKAGE_FONTCONFIG
select BR2_PACKAGE_LIBERATION
select BR2_PACKAGE_XLIB_LIBX11
help
Ratpoison is a simple Window Manager. It is largely modelled
after GNU Screen and focuses on the keyboard instead of a
mouse.
The screen can be split into non-overlapping frames. All
windows are kept maximized inside their frames to take full
advantage of your precious screen real estate.
http://www.nongnu.org/ratpoison/
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 d98fa4be025ecca453c407ff311ab3949f29f20d6d8abedf8f0716b85fc8d1f1 ratpoison-1.4.9.tar.xz
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
+28
View File
@@ -0,0 +1,28 @@
################################################################################
#
# ratpoison
#
################################################################################
RATPOISON_VERSION = 1.4.9
RATPOISON_SOURCE = ratpoison-$(RATPOISON_VERSION).tar.xz
RATPOISON_SITE = http://download.savannah.nongnu.org/releases/ratpoison
RATPOISON_LICENSE = GPL-2.0+
RATPOISON_LICENSE_FILES = COPYING
RATPOISON_CONF_OPTS = \
--x-includes=$(STAGING_DIR)/usr/include/X11 \
--x-libraries=$(STAGING_DIR)/usr/lib \
--without-xkb \
--without-xft
RATPOISON_DEPENDENCIES = xlib_libX11
ifeq ($(BR2_PACKAGE_XLIB_LIBXRANDR),y)
RATPOISON_DEPENDENCIES += xlib_libXrandr
RATPOISON_CONF_OPTS += --with-xrandr
else
RATPOISON_CONF_OPTS += --without-xrandr
endif
$(eval $(autotools-package))