small-package/quickstart/Makefile

69 lines
1.9 KiB
Makefile
Raw Normal View History

2022-01-21 20:30:46 +08:00
#
# Copyright (C) 2015-2016 OpenWrt.org
# Copyright (C) 2020 jjm2473@gmail.com
#
# This is free software, licensed under the GNU General Public License v3.
#
include $(TOPDIR)/rules.mk
PKG_ARCH_quickstart:=$(ARCH)
PKG_NAME:=quickstart
2022-09-30 16:14:11 +08:00
PKG_VERSION:=0.6.0
2022-11-08 20:24:59 +08:00
PKG_RELEASE:=2
2022-01-21 20:30:46 +08:00
PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://fw.koolcenter.com/binary/quickstart/
2022-09-30 16:14:11 +08:00
PKG_HASH:=0893c8d58cb639946f33b2dd5841729b613eb89651c11bd40294d9235323784c
2022-01-21 20:30:46 +08:00
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-binary-$(PKG_VERSION)
PKG_BUILD_PARALLEL:=1
PKG_USE_MIPS16:=0
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)
SECTION:=net
2022-01-23 09:04:00 +08:00
CATEGORY:=Network
2022-01-21 20:30:46 +08:00
SUBMENU:=Web Servers/Proxies
TITLE:=Quickstart, the quick start.
2022-06-30 20:22:16 +08:00
DEPENDS:=@(x86_64||aarch64) +shadow-utils +shadow-useradd +mount-utils +lsblk +e2fsprogs +parted +smartmontools +smartd +mdadm
2022-01-21 20:30:46 +08:00
URL:=https://easepi.linkease.com/
endef
define Package/$(PKG_NAME)/description
Quickstart is a dashboard & user guide
endef
2022-11-08 20:24:59 +08:00
define Package/$(PKG_NAME)/conffiles
/etc/config/quickstart
endef
2022-01-21 20:30:46 +08:00
define Package/$(PKG_NAME)/postinst
#!/bin/sh
if [ -z "$${IPKG_INSTROOT}" ]; then
2022-09-13 20:25:56 +08:00
if [ -f /etc/uci-defaults/09-quickstart ]; then
chmod 755 /etc/uci-defaults/09-quickstart
/etc/uci-defaults/09-quickstart && rm -f /etc/uci-defaults/09-quickstart
fi
2022-01-21 20:30:46 +08:00
fi
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/$(PKG_NAME)/install
2022-09-15 23:46:55 +08:00
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/uci-defaults $(1)/etc/hotplug.d/block $(1)/etc/config
2022-01-21 20:30:46 +08:00
$(INSTALL_BIN) $(PKG_BUILD_DIR)/quickstart.$(PKG_ARCH_quickstart) $(1)/usr/sbin/quickstart
$(INSTALL_BIN) ./files/quickstart.init $(1)/etc/init.d/quickstart
2022-09-06 20:23:01 +08:00
$(INSTALL_BIN) ./files/quickstart.uci-default $(1)/etc/uci-defaults/09-quickstart
$(INSTALL_BIN) ./files/quickstart.hotplug $(1)/etc/hotplug.d/block/09-quickstart
2022-07-29 20:21:49 +08:00
$(INSTALL_CONF) ./files/quickstart.config $(1)/etc/config/quickstart
2022-01-21 20:30:46 +08:00
endef
$(eval $(call BuildPackage,$(PKG_NAME)))