mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 10:31:38 +08:00
25 lines
548 B
Makefile
25 lines
548 B
Makefile
#
|
|
# Copyright (C) 2026
|
|
#
|
|
# This is free software, licensed under the Apache License, Version 2.0.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_TITLE:=Support for OpenVPN Client
|
|
LUCI_DESCRIPTION:=This package provides support for OpenVPN client configuration in LuCI.
|
|
LUCI_DEPENDS:=+openvpn +kmod-tun +firewall
|
|
LUCI_PKGARCH:=all
|
|
PKG_VERSION:=1
|
|
PKG_RELEASE:=1
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
define Package/$(PKG_NAME)/postinst
|
|
#!/bin/sh
|
|
mkdir -p "$${IPKG_INSTROOT}/etc/openvpn/openvpnc"
|
|
exit 0
|
|
endef
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|