mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
0a4b1801e7
This was supposed to be part of
fce71d09fb
, which introduced the
parprouted package, but due to a missed "git commit --amend", it
wasn't included in this commit, so let's add it now.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
556 B
Makefile
21 lines
556 B
Makefile
################################################################################
|
|
#
|
|
# parprouted
|
|
#
|
|
################################################################################
|
|
|
|
PARPROUTED_VERSION = 0.7
|
|
PARPROUTED_SITE = https://www.hazard.maks.net/parprouted
|
|
PARPROUTED_LICENSE = GPL-2.0
|
|
PARPROUTED_LICENSE_FILES = COPYING
|
|
|
|
define PARPROUTED_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) all
|
|
endef
|
|
|
|
define PARPROUTED_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/parprouted $(TARGET_DIR)/usr/sbin/parprouted
|
|
endef
|
|
|
|
$(eval $(generic-package))
|