1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-14 03:13:54 +02:00
openwrt-packages/utils/bmx7-dnsupdate/Makefile
Jan Baier 80ed5b9490 bmx7-dnsupdate: Call killall with the -s
Some versions of killall do support the `killall -SIGNAL` syntax and
have only `-s SIGNAL` which should be supported everywhere.

I see the problem with *killall (PSmisc) 23.3* on latest TurrisOS 5.2

Signed-off-by: Jan Baier <jan.baier@amagical.net>
2021-09-08 17:13:52 -04:00

29 lines
512 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=bmx7-dnsupdate
PKG_VERSION:=0.1
PKG_RELEASE:=3
include $(INCLUDE_DIR)/package.mk
define Package/bmx7-dnsupdate
SECTION:=utils
CATEGORY:=Utilities
TITLE:=bmx7-dnsupdate
MAINTAINER:=Paul Spooren <spooren@informatik.uni-leipzig.de>
DEPENDS:=+bmx7 +bmx7-json inotifywait jshn
PKGARCH:=all
endef
define Build/Compile
endef
define Build/Configure
endef
define Package/bmx7-dnsupdate/install
$(CP) files/* $(1)/
endef
$(eval $(call BuildPackage,bmx7-dnsupdate))