uradvd: fix installed filename, add conffiles
authorHuangbin Zhan <zhanhb88@gmail.com>
Sun, 24 Oct 2021 10:32:31 +0000 (18:32 +0800)
committerRosen Penev <rosenp@gmail.com>
Thu, 28 Oct 2021 06:18:42 +0000 (23:18 -0700)
Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
net/uradvd/Makefile

index 0d6544737da67cdf442af661bfaa8abec0c55ed9..577c4fc0a465744dc39befac6eb696e40e418723 100644 (file)
@@ -1,7 +1,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=uradvd
-PKG_RELEASE:=1
+PKG_RELEASE:=$(AUTORELEASE)
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL=https://github.com/freifunk-gluon/uradvd.git
@@ -27,11 +27,15 @@ endef
 
 define Package/uradvd/install
        $(INSTALL_DIR) $(1)/etc/config/
-       $(INSTALL_DATA) ./files/uradvd.config $(1)/etc/config/
+       $(INSTALL_DATA) ./files/uradvd.config $(1)/etc/config/uradvd
        $(INSTALL_DIR) $(1)/etc/init.d/
-       $(INSTALL_BIN) ./files/uradvd.init $(1)/etc/init.d/
+       $(INSTALL_BIN) ./files/uradvd.init $(1)/etc/init.d/uradvd
        $(INSTALL_DIR) $(1)/usr/sbin
        $(INSTALL_BIN) $(PKG_BUILD_DIR)/uradvd $(1)/usr/sbin/
 endef
 
+define Package/uradvd/conffiles
+/etc/config/uradvd
+endef
+
 $(eval $(call BuildPackage,uradvd))