422ce6536b
A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
19 lines
531 B
Makefile
19 lines
531 B
Makefile
#############################################################
|
|
#
|
|
# bmon
|
|
#
|
|
#############################################################
|
|
|
|
BMON_VERSION = 2.1.0
|
|
BMON_SOURCE = bmon-$(BMON_VERSION).tar.gz
|
|
BMON_SITE = http://distfiles.gentoo.org/distfiles
|
|
BMON_DEPENDENCIES = ncurses
|
|
BMON_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
|
|
|
$(eval $(call AUTOTARGETS,package,bmon))
|
|
|
|
$(BMON_TARGET_UNINSTALL):
|
|
$(call MESSAGE,"Uninstalling")
|
|
rm -f $(TARGET_DIR)/usr/bin/bmon
|
|
rm -f $(BMON_TARGET_INSTALL_TARGET) $(BMON_HOOK_POST_INSTALL)
|