mirror of
https://github.com/kiddin9/openwrt-packages.git
synced 2025-01-08 13:17:29 +08:00
24 lines
497 B
Makefile
24 lines
497 B
Makefile
# Copyright (C) 2016 Openwrt.org
|
|
#
|
|
# This is free software, licensed under the Apache License, Version 2.0 .
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-openai
|
|
|
|
LUCI_TITLE:=LuCI support for OpenAI
|
|
LUCI_DEPENDS:=+openai +luci-compat
|
|
|
|
define Package/$(PKG_NAME)/postinst
|
|
#!/bin/sh
|
|
[ -n "${IPKG_INSTROOT}" ] || {
|
|
( . /etc/uci-defaults/luci-openai ) && rm -f /etc/uci-defaults/luci-openai
|
|
exit 0
|
|
}
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|