mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 03:01:54 +08:00
57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2026
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=virtualdog
|
|
PKG_VERSION:=0.0.4
|
|
PKG_RELEASE:=4
|
|
# Point this at the released binary tarball when you publish builds.
|
|
PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/Carseason/openwrt-packages/releases/download/prebuilt/
|
|
PKG_HASH:=skip
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-binary-$(PKG_VERSION)
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_USE_MIPS16:=0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
PKG_ARCH_virtualdog:=$(ARCH)
|
|
|
|
define Package/$(PKG_NAME)
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Web Servers/Proxies
|
|
TITLE:=VirtualDog
|
|
DEPENDS:=@(x86_64||aarch64) +qemu-x86_64-softmmu +qemu-aarch64-softmmu +qemu-img +qemu-bridge-helper +kmod-tun +virtualdog-efi
|
|
URL:=https://example.invalid/virtualdog
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
VirtualDog provides a web UI and API for managing QEMU/KVM virtual machines on OpenWrt.
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
/etc/config/virtualdog
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/uci-defaults $(1)/etc/config
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/virtualdogd.$(PKG_ARCH_virtualdog) $(1)/usr/sbin/virtualdogd
|
|
$(INSTALL_BIN) ./files/virtualdog.init $(1)/etc/init.d/virtualdog
|
|
$(INSTALL_BIN) ./files/virtualdog.uci-default $(1)/etc/uci-defaults/09-virtualdog
|
|
$(INSTALL_CONF) ./files/virtualdog.config $(1)/etc/config/virtualdog
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|