mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
31 lines
790 B
Makefile
31 lines
790 B
Makefile
################################################################################
|
|
#
|
|
# babeld
|
|
#
|
|
################################################################################
|
|
|
|
BABELD_VERSION = 1.13.1
|
|
BABELD_SITE = https://www.irif.fr/~jch/software/files
|
|
BABELD_LICENSE = MIT
|
|
BABELD_LICENSE_FILES = LICENCE
|
|
|
|
define BABELD_BUILD_CMDS
|
|
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS)
|
|
endef
|
|
|
|
define BABELD_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 755 $(@D)/babeld $(TARGET_DIR)/usr/sbin/babeld
|
|
endef
|
|
|
|
define BABELD_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 755 package/babeld/S50babeld \
|
|
$(TARGET_DIR)/etc/init.d/S50babeld
|
|
endef
|
|
|
|
define BABELD_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 644 package/babeld/babeld.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/babeld.service
|
|
endef
|
|
|
|
$(eval $(generic-package))
|