buildrootschalter/package/libnl/libnl.mk
Alexandre Belloni 8dfd59d114 Normalize separator size to 80
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2013-06-06 22:30:24 +02:00

32 lines
958 B
Makefile

################################################################################
#
# libnl
#
################################################################################
LIBNL_VERSION = 3.2.21
LIBNL_SITE = http://www.infradead.org/~tgr/libnl/files
LIBNL_LICENSE = LGPLv2.1+
LIBNL_LICENSE_FILES = COPYING
LIBNL_INSTALL_STAGING = YES
LIBNL_DEPENDENCIES = host-bison host-flex
LIBNL_BINARIES = class-add class-delete class-list classid-lookup cls-add \
cls-delete cls-list link-list pktloc-lookup qdisc-add qdisc-delete \
qdisc-list
define LIBNL_UNINSTALL_TARGET_CMDS
rm -r $(TARGET_DIR)/usr/lib/libnl.* $(TARGET_DIR)/usr/lib/libnl-*.*
rm -rf $(TARGET_DIR)/usr/lib/libnl
endef
define LIBNL_REMOVE_TOOLS
rm -rf $(addprefix $(TARGET_DIR)/usr/sbin/nl-, $(LIBNL_BINARIES))
rm -rf $(TARGET_DIR)/usr/sbin/genl-ctrl-list
endef
ifneq ($(BR2_PACKAGE_LIBNL_TOOLS),y)
LIBNL_POST_INSTALL_TARGET_HOOKS += LIBNL_REMOVE_TOOLS
endif
$(eval $(autotools-package))