mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-02 07:29:28 +08:00
24 lines
500 B
Makefile
24 lines
500 B
Makefile
# Copyright (C) 2016 Openwrt.org
|
|
# Copyright (C) 2024 iv7777 <hongba@rocketmail.com>
|
|
#
|
|
# This is free software, licensed under the Apache License, Version 2.0 .
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_TITLE:=LuCI support for Timewol
|
|
LUCI_PKGARCH:=all
|
|
LUCI_DEPENDS:=+etherwake
|
|
|
|
define Package/luci-app-timewol/postinst
|
|
#!/bin/sh
|
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
|
chmod +x /etc/init.d/timewol
|
|
fi
|
|
exit 0
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|