Fix libretro raw packaging

This commit is contained in:
Ehmry - 2019-03-16 17:09:56 +01:00
parent eae83c9cf6
commit 6be0dc9085
1 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ DEPOT_NAME = libretro-$(TARGET_NAME)
|> $(DEPOT_BIN_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION)/%b\
!publish_core_raw = |> ^o copy %b^ cp %f %o \
|> $(DEPOT_RAW_DIR)/$(DEPOT_NAME)/%b
|> $(DEPOT_RAW_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION)/%b
!publish_core_archives = |> ^ varse archives^ \
tup varsed %f %o ; \
@ -54,17 +54,17 @@ ifndef DEPOT_KEY
else
!core_publish_bin = |> ^o archive binaries^ \
tar cfJ %o -C $(DEPOT_BIN_DIR)/$(DEPOT_NAME) . ; $(SIGN_CMD) < %o > %o.sig \
tar cfJ %o -C $(DEPOT_BIN_DIR)/$(DEPOT_NAME) @(DEPOT_VERSION) ; $(SIGN_CMD) < %o > %o.sig \
|> $(PUBLIC_BIN_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION).tar.xz \
| $(PUBLIC_BIN_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION).tar.xz.sig
!core_publish_pkg = |> ^o archive package metadata^ \
tar cfJ %o -C $(DEPOT_PKG_DIR)/$(TARGET_NAME) . ; $(SIGN_CMD) < %o > %o.sig \
tar cfJ %o -C $(DEPOT_PKG_DIR)/$(TARGET_NAME) @(DEPOT_VERSION) ; $(SIGN_CMD) < %o > %o.sig \
|> $(PUBLIC_PKG_DIR)/$(TARGET_NAME)/@(DEPOT_VERSION).tar.xz \
| $(PUBLIC_PKG_DIR)/$(TARGET_NAME)/@(DEPOT_VERSION).tar.xz.sig
!core_publish_raw = |> ^o archive raw files^ \
tar cfJ %o -C $(DEPOT_RAW_DIR)/$(DEPOT_NAME) . ; $(SIGN_CMD) < %o > %o.sig \
tar cfJ %o -C $(DEPOT_RAW_DIR)/$(DEPOT_NAME) @(DEPOT_VERSION) ; $(SIGN_CMD) < %o > %o.sig \
|> $(PUBLIC_RAW_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION).tar.xz \
| $(PUBLIC_RAW_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION).tar.xz.sig