diff options
author | Karel Kočí <karel.koci@nic.cz> | 2020-10-08 11:56:45 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2020-10-08 11:56:45 +0200 |
commit | 464f5d8de44e832b05f4104fb51dbde5dd6e77ec (patch) | |
tree | 1156ce1c97478642fe22bdf81c7d44ef7825ff13 /user-notify/Makefile | |
parent | 26edea6c1cb08dee516af1762381d9cafcb8f812 (diff) | |
download | openwrt-personal-pkgs-464f5d8de44e832b05f4104fb51dbde5dd6e77ec.tar.gz openwrt-personal-pkgs-464f5d8de44e832b05f4104fb51dbde5dd6e77ec.tar.bz2 openwrt-personal-pkgs-464f5d8de44e832b05f4104fb51dbde5dd6e77ec.zip |
user-notify: add to test new version
Diffstat (limited to 'user-notify/Makefile')
-rw-r--r-- | user-notify/Makefile | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/user-notify/Makefile b/user-notify/Makefile new file mode 100644 index 0000000..1a690a1 --- /dev/null +++ b/user-notify/Makefile @@ -0,0 +1,60 @@ +# +## Copyright (C) 2018-2020 CZ.NIC z.s.p.o. (https://www.nic.cz/) +# +## This is free software, licensed under the GNU General Public License v3. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=user-notify +PKG_VERSION:=61.5 +PKG_RELEASE:=1 + +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL:=https://gitlab.nic.cz/turris/user-notify.git +PKG_SOURCE_VERSION:=v$(PKG_VERSION) + +PKG_MAINTAINER:=CZ.NIC <packaging@turris.cz> +PKG_LICENSE:=GPL-3.0-or-later + +include $(INCLUDE_DIR)/package.mk + +define Package/user-notify + TITLE:=Turris user notifications + DEPENDS:=+at +msmtp +ca-certificates +crypto-wrapper +sentinel-certgen +gettext-tools +create_notification +endef + +Build/Compile:=: + +define Package/user-notify/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/scripts/list_notifications $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/scripts/notifier $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/scripts/user-notify-cleaner $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/scripts/user-notify-display $(1)/usr/bin/ + + $(INSTALL_DIR) $(1)/etc/config + $(INSTALL_CONF) ./files/user_notify.uci $(1)/etc/config/user_notify + + $(INSTALL_DIR) $(1)/etc/cron.d + $(INSTALL_DATA) ./files/user_notify.cron $(1)/etc/cron.d/user_notify +endef + +define Package/user-notify/conffiles +/etc/config/user_notify +endef + + +define Package/create_notification + TITLE:=Create Turris user notification + DEPENDS:=+gettext-tools +endef + +define Package/create_notification/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/scripts/create_notification $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,user-notify)) +$(eval $(call BuildPackage,create_notification)) |