initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
downloaded from
|
||||
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-misc/empty/files/empty-respect-LDFLAGS.patch?view=markup
|
||||
|
||||
Reported on the Gentoo bug tracker
|
||||
https://bugs.gentoo.org/show_bug.cgi?id=429664
|
||||
|
||||
and reported upstream
|
||||
https://sourceforge.net/tracker/?func=detail&aid=3554236&group_id=136798&atid=736886
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
|
||||
--- empty-0.6.18b/Makefile
|
||||
+++ empty-0.6.18b/Makefile
|
||||
@@ -16,7 +16,7 @@
|
||||
PREFIX = /usr/local
|
||||
|
||||
all:
|
||||
- ${CC} ${CFLAGS} -Wall ${LIBS} -o empty empty.c
|
||||
+ ${CC} ${CFLAGS} ${LDFLAGS} empty.c ${LIBS} -o empty
|
||||
|
||||
FreeBSD: all
|
||||
NetBSD: all
|
||||
@@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_EMPTY
|
||||
bool "empty"
|
||||
depends on BR2_USE_MMU # uses fork()
|
||||
help
|
||||
Run processes and applications under pseudo-terminal (PTY)
|
||||
sessions.
|
||||
|
||||
http://empty.sourceforge.net/
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally computed:
|
||||
sha256 2fccd0faa1b3deaec1add679cbde3f34250e45872ad5df463badd4bb4edeb797 empty-0.6.21b.tgz
|
||||
sha256 f01dbe3c624084900b9df1393d9062518b2bc0487acd6a3300ebd6e71352d112 COPYRIGHT
|
||||
@@ -0,0 +1,22 @@
|
||||
################################################################################
|
||||
#
|
||||
# empty
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EMPTY_VERSION = 0.6.21b
|
||||
EMPTY_SOURCE = empty-$(EMPTY_VERSION).tgz
|
||||
EMPTY_SITE = http://downloads.sourceforge.net/project/empty/empty/empty-$(EMPTY_VERSION)
|
||||
EMPTY_LICENSE = BSD-3-Clause
|
||||
EMPTY_LICENSE_FILES = COPYRIGHT
|
||||
EMPTY_STRIP_COMPONENTS = 0
|
||||
|
||||
define EMPTY_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) all
|
||||
endef
|
||||
|
||||
define EMPTY_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0755 -D $(@D)/empty $(TARGET_DIR)/usr/bin/empty
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user