-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
70 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,19 +5,72 @@ | |
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=chinadns-ng | ||
PKG_VERSION:=2023.10.28 | ||
PKG_VERSION:=2024.07.21 | ||
PKG_RELEASE:=1 | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | ||
PKG_SOURCE_URL:=https://codeload.github.com/zfl9/chinadns-ng/tar.gz/$(PKG_VERSION)? | ||
PKG_HASH:=8dbce6ec767b6d132c5625e5533f96c42310f8b67ce4ca963ea34a6797ae99b4 | ||
ifeq ($(ARCH),aarch64) | ||
ifeq ($(BOARD),rockchip) | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@aarch64-linux-musl@generic+v8a@fast+lto | ||
PKG_HASH:=1a65fadc48956231eba439efd9ae914f6e5eb0f5d257a34cd8c6b0d5734ade57 | ||
else | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl_noasm@aarch64-linux-musl@generic+v8a@fast+lto | ||
PKG_HASH:=9414c8f237b8a919d411fb38a7d2aa83c7617ae441695af54ea84feb22b0639c | ||
endif | ||
else ifeq ($(ARCH),arm) | ||
# Referred to golang/golang-values.mk | ||
ARM_CPU_FEATURES:=$(word 2,$(subst +,$(space),$(call qstrip,$(CONFIG_CPU_TYPE)))) | ||
ifeq ($(ARM_CPU_FEATURES),) | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@arm-linux-musleabi@generic+v5t+soft_float@fast+lto | ||
PKG_HASH:=3d1a89bdc413f6922df43f2c1a18f199e83ec7e5d6d68961a10229a73188b07a | ||
else ifneq ($(filter $(ARM_CPU_FEATURES),vfp vfpv2),) | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@arm-linux-musleabi@generic+v6+soft_float@fast+lto | ||
PKG_HASH:=d9095d72dba4018c21ab794c81e467011eee8b3582822a3fa45b803bfdf0d4fa | ||
else | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@arm-linux-musleabihf@generic+v7a@fast+lto | ||
PKG_HASH:=61fff30848f687d93e58bb91029252818d76e0980d4d32fd2bf6d67dfa51cd4f | ||
endif | ||
else ifeq ($(ARCH),i386) | ||
ifneq ($(CONFIG_TARGET_x86_geode)$(CONFIG_TARGET_x86_legacy),) | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@i386-linux-musl@i686@fast+lto | ||
PKG_HASH:=8fd1f8cc1ee5f24a10a45367d3444a7af0618f01bf5ea1d14c8bfac856062a23 | ||
else | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@i386-linux-musl@pentium4@fast+lto | ||
PKG_HASH:=15983518255abc1849b13352763112442388519109625a9fcd92f50e05831b1c | ||
endif | ||
else ifeq ($(ARCH),mips) | ||
ifeq ($(CPU_TYPE),mips32) | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@mips-linux-musl@mips32+soft_float@fast+lto | ||
PKG_HASH:=1b804d4c450d10cb6f91ac0656121bf9fd3e499f15ea569770b8d5523d5290c2 | ||
else | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@mips-linux-musl@mips32r2+soft_float@fast+lto | ||
PKG_HASH:=a8c0644d5c9715dadafa7890cd24a911718a71f58a4328b426cb9a239c1a2cde | ||
endif | ||
else ifeq ($(ARCH),mipsel) | ||
ifeq ($(CPU_TYPE),) | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@mipsel-linux-musl@mips32+soft_float@fast+lto | ||
PKG_HASH:=82d07d148e2c20d4247df7baa0421f1c365954c0953e0e0fbe76e1cd78d1f1b2 | ||
else ifeq ($(CONFIG_HAS_FPU),) | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@mipsel-linux-musl@mips32r2+soft_float@fast+lto | ||
PKG_HASH:=375453bc696e3cd11dda7476c99aaca0933f6f282a909a2220d459e4624ba550 | ||
else | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@mipsel-linux-musl@mips32r2@fast+lto | ||
PKG_HASH:=fadbf0d08e154922431a29a1d5f63b0347e0728886a23f2fed836c0b908f07f8 | ||
endif | ||
else ifeq ($(ARCH),x86_64) | ||
PKG_ARCH:=$(PKG_NAME)+wolfssl@x86_64-linux-musl@x86_64@fast+lto | ||
PKG_HASH:=8d600757acf4fcb6250aef6ba5bf19d9a2182a188e900d1201381ab0a52a5463 | ||
else | ||
PKG_ARCH:=dummy | ||
PKG_HASH:=dummy | ||
endif | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(ARCH_PACKAGES) | ||
PKG_SOURCE_URL:=https://github.com/zfl9/chinadns-ng/releases/download/$(PKG_VERSION)/$(PKG_ARCH)? | ||
UNPACK_CMD=$(CP) $(DL_DIR)/$(PKG_SOURCE) $(PKG_BUILD_DIR)/$(PKG_NAME) | ||
|
||
PKG_LICENSE:=AGPL-3.0-only | ||
PKG_LICENSE_FILES:=LICENSE | ||
PKG_MAINTAINER:=pexcn <[email protected]> | ||
|
||
PKG_BUILD_PARALLEL:=1 | ||
PKG_INSTALL:=1 | ||
PKG_MAINTAINER:=Tianling Shen <[email protected]> | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
|
||
|
@@ -27,12 +80,19 @@ define Package/chinadns-ng | |
SUBMENU:=IP Addresses and Names | ||
TITLE:=ChinaDNS next generation, refactoring with epoll and ipset. | ||
URL:=https://github.com/zfl9/chinadns-ng | ||
DEPENDS:=+ipset | ||
DEPENDS:=@(aarch64||arm||i386||mips||mipsel||x86_64) | ||
endef | ||
|
||
define Package/chinadns-ng/description | ||
ChinaDNS Next Generation, refactoring with epoll and ipset. | ||
endef | ||
|
||
define Build/Compile | ||
endef | ||
|
||
define Package/chinadns-ng/install | ||
$(INSTALL_DIR) $(1)/usr/bin | ||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/chinadns-ng $(1)/usr/bin | ||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/chinadns-ng | ||
endef | ||
|
||
$(eval $(call BuildPackage,chinadns-ng)) |