diff options
| author | Christian Marangi | 2024-10-24 10:46:47 +0000 |
|---|---|---|
| committer | Christian Marangi | 2024-10-24 10:46:47 +0000 |
| commit | 6835ff8cbcc826ce64b073872e740a7399cb0b47 (patch) | |
| tree | 4803bcd654993864c1ea83e87c2477900f0b8618 | |
| parent | abeaf8df5c8ad486d2beb110d87cb511fb5cd831 (diff) | |
| download | openwrt-6835ff8cbcc826ce64b073872e740a7399cb0b47.tar.gz | |
include/package-pack: Set missing Maintainer and URL for APK
Set missing Maintainer and URL info for .apk creation.
Fixes: d788ab376f85 ("build: add APK package build capabilities")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | include/package-pack.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/package-pack.mk b/include/package-pack.mk index 9a284e05d4..9991050c14 100644 --- a/include/package-pack.mk +++ b/include/package-pack.mk @@ -343,6 +343,8 @@ else --info "arch:$(PKGARCH)" \ --info "license:$(LICENSE)" \ --info "origin:$(SOURCE)" \ + --info "url:$(URL)" \ + --info "maintainer:$(MAINTAINER)" \ --info "provides:$$(foreach prov,$$(filter-out $(1)$$(ABIV_$(1)),$(PROVIDES)$$(if $$(ABIV_$(1)), \ $(1) $(foreach provide,$(PROVIDES),$(provide)$$(ABIV_$(1))))),$$(prov)=$(VERSION) )" \ --script "post-install:$$(ADIR_$(1))/post-install" \ |