diff options
author | Ondřej Caletka <ondrej@caletka.cz> | 2016-07-21 14:15:53 +0200 |
---|---|---|
committer | Ondřej Caletka <ondrej@caletka.cz> | 2016-07-29 13:28:34 +0200 |
commit | c6bc1bed739e7f34c98c1046d0ec42249e774f7b (patch) | |
tree | 2434a60075ea116fefbc4230da90b7cd57561c44 /net/radsecproxy/Makefile | |
parent | a5bfa3085ea54e83ef79da6e207ffeebd42dc06c (diff) |
radsecproxy: UCIfied configuration
Signed-off-by: Ondřej Caletka <ondrej@caletka.cz>
Diffstat (limited to 'net/radsecproxy/Makefile')
-rw-r--r-- | net/radsecproxy/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/radsecproxy/Makefile b/net/radsecproxy/Makefile index 52b52e94f..eded9323c 100644 --- a/net/radsecproxy/Makefile +++ b/net/radsecproxy/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=radsecproxy PKG_VERSION:=1.6.7 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=http://software.uninett.no/radsecproxy/ @@ -43,14 +43,14 @@ TARGET_CFLAGS += -Wno-long-long define Package/radsecproxy/install $(INSTALL_DIR) $(1)/usr/sbin/ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/radsecproxy $(1)/usr/sbin/ - $(INSTALL_DIR) $(1)/etc/ - $(CP) $(PKG_BUILD_DIR)/radsecproxy.conf-example $(1)/etc/radsecproxy.conf + $(INSTALL_DIR) $(1)/etc/config/ + $(INSTALL_DATA) ./files/radsecproxy.conf $(1)/etc/config/radsecproxy $(INSTALL_DIR) $(1)/etc/init.d/ $(INSTALL_BIN) ./files/radsecproxy.init $(1)/etc/init.d/radsecproxy endef define Package/radsecproxy/conffiles -/etc/radsecproxy.conf +/etc/config/radsecproxy endef $(eval $(call BuildPackage,radsecproxy)) |