update 2024-03-27 20:28:51

This commit is contained in:
kenzok8 2024-03-27 20:28:51 +08:00
parent 606a016ca8
commit 82b286d69e
1 changed files with 8 additions and 0 deletions

View File

@ -70,7 +70,15 @@ define Build/Prepare
( \
$(TAR) --strip-components=1 -C $(PKG_BUILD_DIR)/../ -xzf $(DL_DIR)/$(PKG_NAME)-$(PKG_VERSION).tar.gz ; \
rm -rf $(PKG_BUILD_DIR) && git clone https://github.com/daeuniverse/dae-wing $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/wing ; \
pushd $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/wing ; \
go get -u ; \
go mod tidy ; \
popd ; \
rm -rf $(PKG_BUILD_DIR)/dae-core && git clone https://github.com/daeuniverse/dae $(PKG_BUILD_DIR)/dae-core ; \
pushd $(PKG_BUILD_DIR)/dae-core ; \
go get -u ; \
go mod tidy ; \
popd ; \
rm -rf $(PKG_BUILD_DIR)/dae-core/control/kern/headers && git clone https://github.com/daeuniverse/dae_bpf_headers $(PKG_BUILD_DIR)/dae-core/control/kern/headers ; \
)
endef