blob: 9d6b4116a15974cfd32b54c877c1a7789c2fa636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#
# Copyright (C) 2016, 2018-2019, 2022, 2026 Jeffery To
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=slide-switch
PKG_VERSION:=1.0.1
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/jefferyto/openwrt-slide-switch.git
PKG_MIRROR_HASH:=2670b64e8e906daa4f7bdbc2a0edc9589729abf7eca8ab374b7d20a8356ab160
PKG_SOURCE_VERSION:=$(PKG_VERSION)
PKG_BUILD_PARALLEL:=1
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
PKG_LICENSE:=GPL-2.0-only
PKG_LICENSE_FILES:=COPYING
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
include $(INCLUDE_DIR)/package.mk
define Package/slide-switch
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Translate switch position change to button press
URL:=https://github.com/jefferyto/openwrt-slide-switch
DEPENDS:=+jshn +jsonfilter
PKGARCH:=all
endef
define Package/slide-switch/description
slide-switch translates slide switch position changes into normal button
presses and releases for OpenWrt devices.
endef
define Package/slide-switch/conffiles
/etc/slide-switch/switch-data.json
endef
define Package/slide-switch/install
$(INSTALL_DIR) $(1)/etc/hotplug.d/button
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/etc/hotplug.d/button/50-slide-switch \
$(1)/etc/hotplug.d/button
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) \
$(PKG_INSTALL_DIR)/etc/init.d/slide-switch \
$(PKG_INSTALL_DIR)/etc/init.d/zzz-slide-switch-update \
$(1)/etc/init.d
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) \
$(PKG_INSTALL_DIR)/usr/sbin/slide-switch \
$(1)/usr/sbin
$(INSTALL_DIR) $(1)/usr/share/slide-switch
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/share/slide-switch/functions.sh \
$(PKG_INSTALL_DIR)/usr/share/slide-switch/switch-data.json \
$(1)/usr/share/slide-switch
endef
$(eval $(call BuildPackage,slide-switch))
|