[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

6
package/libev/Config.in Normal file
View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_LIBEV
bool "libev"
help
Userspace library for handling asynchronous notifications
http://software.schmorp.de/pkg/libev.html

3
package/libev/libev.hash Normal file
View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 507eb7b8d1015fbec5b935f34ebed15bf346bed04a11ab82b8eee848c4205aea libev-4.33.tar.gz
sha256 c4dd1a5bc38b041a320b93c5d6c08f5c41a63f2ce718ee16cfcb757fad448199 LICENSE

21
package/libev/libev.mk Normal file
View File

@ -0,0 +1,21 @@
################################################################################
#
# libev
#
################################################################################
LIBEV_VERSION = 4.33
LIBEV_SITE = http://dist.schmorp.de/libev/Attic
LIBEV_INSTALL_STAGING = YES
LIBEV_LICENSE = BSD-2-Clause or GPL-2.0+
LIBEV_LICENSE_FILES = LICENSE
# The 'compatibility' event.h header conflicts with libevent
# It's completely unnecessary for BR packages so remove it
define LIBEV_DISABLE_EVENT_H_INSTALL
$(SED) 's/ event.h//' $(@D)/Makefile.in
endef
LIBEV_POST_PATCH_HOOKS += LIBEV_DISABLE_EVENT_H_INSTALL
$(eval $(autotools-package))
$(eval $(host-autotools-package))