File tree Expand file tree Collapse file tree 2 files changed +7
-16
lines changed
Expand file tree Collapse file tree 2 files changed +7
-16
lines changed Original file line number Diff line number Diff line change 11PACKAGE_ID := $(shell awk -F"'" '/id:/ {print $$2}' startos/manifest/index.ts)
22INGREDIENTS := $(shell start-cli s9pk list-ingredients 2>/dev/null)
3- ALL_ARCHES ?= x86 arm riscv
4- ALL_TARGETS ?= all_arches
3+ ARCHES ?= x86 arm riscv
4+ TARGETS ?= arches
55ifdef VARIANT
66BASE_NAME := $(PACKAGE_ID ) _$(VARIANT )
77else
88BASE_NAME := $(PACKAGE_ID )
99endif
1010
11- .PHONY : all all_arches aarch64 x86_64 riscv64 arm arm64 x86 riscv arch/* clean install check-deps check-init package ingredients
11+ .PHONY : all arches aarch64 x86_64 riscv64 arm arm64 x86 riscv arch/* clean install check-deps check-init package ingredients
1212.DELETE_ON_ERROR :
1313.SECONDARY :
1414
@@ -33,9 +33,9 @@ define SUMMARY
3333 echo ""
3434endef
3535
36- all : $(ALL_TARGETS )
36+ all : $(TARGETS )
3737
38- all_arches : $(ALL_ARCHES )
38+ arches : $(ARCHES )
3939
4040universal : $(BASE_NAME ) .s9pk
4141 $(call SUMMARY,$< )
@@ -87,8 +87,8 @@ publish: | all
8787 fi ; \
8888 command -v s3cmd > /dev/null || \
8989 (echo " Error: s3cmd not found. It must be installed to publish using s3." && exit 1)
90- printf " \n🚀 Publishing $( ALL_TARGETS ) to %s; indexing on %s ...\n" " $$ S3BASE" " $$ REGISTRY" ; \
91- for s9pk in $( ALL_TARGETS ) ; do \
90+ printf " \n🚀 Publishing $( TARGETS ) to %s; indexing on %s ...\n" " $$ S3BASE" " $$ REGISTRY" ; \
91+ for s9pk in $( TARGETS ) ; do \
9292 start-cli s9pk publish $$ s9pk; \
9393 done
9494
Original file line number Diff line number Diff line change @@ -14,15 +14,6 @@ export const manifest = setupManifest({
1414 'https://github.com/Start9Labs/synapse-startos/blob/master/instructions.md' ,
1515 description : { short, long } ,
1616 volumes : [ 'main' ] ,
17- hardwareRequirements : { } ,
18- alerts : {
19- install : null ,
20- update : null ,
21- uninstall : null ,
22- restore : null ,
23- start : null ,
24- stop : null ,
25- } ,
2617 images : {
2718 synapse : {
2819 source : {
You can’t perform that action at this time.
0 commit comments