e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
590 B
Makefile
24 lines
590 B
Makefile
#############################################################
|
|
#
|
|
# procps
|
|
#
|
|
#############################################################
|
|
|
|
PROCPS_VERSION = 3.2.8
|
|
PROCPS_SITE = http://procps.sourceforge.net/
|
|
|
|
PROCPS_DEPENDENCIES = ncurses
|
|
|
|
define PROCPS_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define PROCPS_INSTALL_TARGET_CMDS
|
|
mkdir -p $(addprefix $(TARGET_DIR)/,usr/bin bin sbin) \
|
|
$(addprefix $(TARGET_DIR)/usr/share/man/,man1 man5 man8)
|
|
$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) lib64=lib install=install \
|
|
ldconfig=true install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|