mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 04:33:00 +02:00
For some reason, the `make license-info` target complained klinfix needed a hash file, but not the other local repos. Issue #67 tracks adding license-info to releases, which will need some looking into, for now this fixes the most glaring packaging oversights. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
21 lines
510 B
Makefile
21 lines
510 B
Makefile
################################################################################
|
|
#
|
|
# net
|
|
#
|
|
################################################################################
|
|
|
|
NET_VERSION = 1.0
|
|
NET_LICENSE = MIT
|
|
NET_LICENSE_FILES = LICENSE
|
|
NET_SITE_METHOD = local
|
|
NET_SITE = $(BR2_EXTERNAL_INFIX_PATH)/src/net
|
|
NET_DEPENDENCIES = libite
|
|
NET_AUTORECONF = YES
|
|
|
|
define NET_INSTALL_EXTRA
|
|
chmod +x $(TARGET_DIR)/usr/share/net/*.sh
|
|
endef
|
|
NET_POST_INSTALL_TARGET_HOOKS += NET_INSTALL_EXTRA
|
|
|
|
$(eval $(autotools-package))
|