3e092163e5
All the packages in this list have the following properties * units are provided by buildroot in the package directory * the SYSTEMD_INSTALL_INIT_HOOK is exactly equivalent to what the [Install] section of the unit does The fix removes the soflinking in the .mk file Signed-off-by: Jérémy Rosen <jeremy.rosen@smile.fr> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
19 lines
570 B
Makefile
19 lines
570 B
Makefile
################################################################################
|
|
#
|
|
# mini-snmpd
|
|
#
|
|
################################################################################
|
|
|
|
MINI_SNMPD_VERSION = 1.4
|
|
MINI_SNMPD_SITE = $(call github,troglobit,mini-snmpd,v$(MINI_SNMPD_VERSION))
|
|
MINI_SNMPD_LICENSE = GPL-2.0
|
|
MINI_SNMPD_LICENSE_FILES = COPYING
|
|
MINI_SNMPD_AUTORECONF = YES
|
|
|
|
define MINI_SNMPD_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 644 package/mini-snmpd/mini-snmpd.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/mini-snmpd.service
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|