Skip to content

Commit

Permalink
treewide: use deterministic-zip
Browse files Browse the repository at this point in the history
https://github.com/timo-reymann/deterministic-zip

This solves a logistics issue; zip files always include the modified
timestamp of a file. This doesn't sound bad until you realize that
GitHub Actions always re-clones the entire repository, and the
timestamp is guaranteed to be different.

Because of this, every time we run our Actions workflow, the zip will
have a different checksum, causing git to re-commit *every single file*
to the frontend repository, causing long workflow times due to the
sheer size of each commit.

deterministic-zip hopefully solves this issue by forcing the modified
timestamp to one hardcoded in its binary, so here is to hoping we don't
abuse our git repo any further.
  • Loading branch information
lifehackerhansol committed Jan 15, 2024
1 parent 31025c1 commit 5fa351a
Show file tree
Hide file tree
Showing 107 changed files with 160 additions and 154 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ jobs:
with:
persist-credentials: false

- name: Install deterministic zip
run: |
wget https://github.com/timo-reymann/deterministic-zip/releases/latest/download/deterministic-zip_linux-amd64
chmod +x deterministic-zip_linux-amd64
sudo mv deterministic-zip_linux-amd64 /usr/local/bin/zip
- name: Package files
run: |
cd archive
Expand Down
6 changes: 3 additions & 3 deletions archive/3dslink.com/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ directory:
mkdir -p $(OUT)/$(BASE)

3DSLink_DS_V4.0B2.zip: directory
cd $(TOPDIR)/3DSLink_DS_V4.0B2 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/3DSLink_DS_V4.0B2 && zip -r $(OUT)/$(BASE)/$@ *

Boot_Card_Blue_Card_V4.0B1.zip: directory
cd $(TOPDIR)/Boot_Card_Blue_Card_V4.0B1 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/Boot_Card_Blue_Card_V4.0B1 && zip -r $(OUT)/$(BASE)/$@ *

3dslink.com_Blue_Kernel_1.64.zip: directory
cd $(TOPDIR)/3dslink.com_Blue_Kernel_1.64 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/3dslink.com_Blue_Kernel_1.64 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp 3dslinkblue.jpg $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/Ace3DS+_R4iLS/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ directory:

Ace3DS+_R4iLS_Wood_R4_1.62.zip: directory
mkdir tmp;cp -r Ace3DS+_R4iLS_Wood_R4_1.62/* $(COMMON)/Wood_R4Li_1.62/* tmp
cd tmp && zip -r -X $(OUT)/$(BASE)/$@ *
cd tmp && zip -r $(OUT)/$(BASE)/$@ *
cd $(TOPDIR); rm -rf tmp

extdata: directory
Expand Down
2 changes: 1 addition & 1 deletion archive/Action_Replay/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

Action_Replay_DSi_non-3DS_FWUpdate_v1.25.zip: directory
cd $(TOPDIR)/Action_Replay_DSi_non-3DS_FWUpdate_v1.25 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/Action_Replay_DSi_non-3DS_FWUpdate_v1.25 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/CycloDS/CycloDS_Evolution/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

CycloDS_Evolution_2.3.zip: directory
cd CycloDS_Evolution_2.3 && zip -r -X $(OUT)/$(BASE)/$@ *
cd CycloDS_Evolution_2.3 && zip -r $(OUT)/$(BASE)/$@ *

old: directory
make -C $@
8 changes: 4 additions & 4 deletions archive/CycloDS/CycloDS_Evolution/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ directory:
mkdir -p $(OUT)/$(BASE)

CycloDS_Evolution_1.4-BETA-3.zip: directory
cd $(TOPDIR)/CycloDS_Evolution_1.4-BETA-3 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/CycloDS_Evolution_1.4-BETA-3 && zip -r $(OUT)/$(BASE)/$@ *

CycloDS_Evolution_1.4.zip: directory
cd $(TOPDIR)/CycloDS_Evolution_1.4 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/CycloDS_Evolution_1.4 && zip -r $(OUT)/$(BASE)/$@ *

CycloDS_Evolution_1.41.zip: directory
cd $(TOPDIR)/CycloDS_Evolution_1.41 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/CycloDS_Evolution_1.41 && zip -r $(OUT)/$(BASE)/$@ *

CycloDS_Evolution_1.5.zip: directory
cd $(TOPDIR)/CycloDS_Evolution_1.5 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/CycloDS_Evolution_1.5 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/CycloDS/CycloDS_iEvolution/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

CycloDS_iEvolution_2.3.zip: directory
cd CycloDS_iEvolution_2.3 && zip -r -X $(OUT)/$(BASE)/$@ *
cd CycloDS_iEvolution_2.3 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/DS-Xtreme/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

DS-Xtreme_FWUpdate_v1.1.2-fixed.zip: directory
cd $(TOPDIR)/DS-Xtreme_FWUpdate_v1.1.2-fixed && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/DS-Xtreme_FWUpdate_v1.1.2-fixed && zip -r $(OUT)/$(BASE)/$@ *

old: directory
make -C $@
2 changes: 1 addition & 1 deletion archive/DS-Xtreme/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

DS-Xtreme_FWUpdate_v1.1.2.zip: directory
cd $(TOPDIR)/DS-Xtreme_FWUpdate_v1.1.2 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/DS-Xtreme_FWUpdate_v1.1.2 && zip -r $(OUT)/$(BASE)/$@ *
4 changes: 2 additions & 2 deletions archive/EDGE/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ directory:
mkdir -p $(OUT)/$(BASE)

EDGE_OS_2.3.zip: directory
cd $(TOPDIR)/EDGE_OS_2.3 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EDGE_OS_2.3 && zip -r $(OUT)/$(BASE)/$@ *

iEDGE_OS_2.3.zip: directory
cd $(TOPDIR)/iEDGE_OS_2.3 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/iEDGE_OS_2.3 && zip -r $(OUT)/$(BASE)/$@ *

old: directory
make -C $@
Expand Down
8 changes: 4 additions & 4 deletions archive/EDGE/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ directory:
mkdir -p $(OUT)/$(BASE)

EDGE_OS_1.36.zip: directory
cd $(TOPDIR)/EDGE_OS_1.36 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EDGE_OS_1.36 && zip -r $(OUT)/$(BASE)/$@ *

EDGE_OS_1.37.zip: directory
cd $(TOPDIR)/EDGE_OS_1.37 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EDGE_OS_1.37 && zip -r $(OUT)/$(BASE)/$@ *

EDGE_OS_1.40.zip: directory
cd $(TOPDIR)/EDGE_OS_1.40.zip && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EDGE_OS_1.40.zip && zip -r $(OUT)/$(BASE)/$@ *

EDGE_OS_1.41.zip: directory
cd $(TOPDIR)/EDGE_OS_1.41 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EDGE_OS_1.41 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/EDGEi/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

EDGEi_Kernel_2.20.zip: directory
cd $(TOPDIR)/EDGEi_Kernel_2.20 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EDGEi_Kernel_2.20 && zip -r $(OUT)/$(BASE)/$@ *
4 changes: 2 additions & 2 deletions archive/EZ-Flash/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ directory:
mkdir -p $(OUT)/$(BASE)

EZ-Flash_V+_oldVi_Kernel_2.0RC20.zip: directory
cd $(TOPDIR)/EZ-Flash_V+_oldVi_Kernel_2.0RC20 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EZ-Flash_V+_oldVi_Kernel_2.0RC20 && zip -r $(OUT)/$(BASE)/$@ *

EZ-Flash_Vi_705_805_Kernel_3.0OB8.zip: directory
cd $(TOPDIR)/EZ-Flash_Vi_705_805_Kernel_3.0OB8 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EZ-Flash_Vi_705_805_Kernel_3.0OB8 && zip -r $(OUT)/$(BASE)/$@ *

old: directory
make -C $@
10 changes: 5 additions & 5 deletions archive/EZ-Flash/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ directory:
mkdir -p $(OUT)/$(BASE)

EZ-Flash_V_Kernel_1.80.zip: directory
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.80 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.80 && zip -r $(OUT)/$(BASE)/$@ *

EZ-Flash_V_Kernel_1.82.zip: directory
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.82 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.82 && zip -r $(OUT)/$(BASE)/$@ *

EZ-Flash_V_Kernel_1.83.zip: directory
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.83 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.83 && zip -r $(OUT)/$(BASE)/$@ *

EZ-Flash_V_Kernel_1.84.zip: directory
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.84 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.84 && zip -r $(OUT)/$(BASE)/$@ *

EZ-Flash_V_Kernel_1.86.zip: directory
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.86 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EZ-Flash_V_Kernel_1.86 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/Gateway_Blue/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ directory:

Gateway_Blue_Wood_R4_1.62.zip: directory
mkdir tmp;cp -r Gateway_Blue_Wood_R4_1.62/* $(COMMON)/Wood_R4Li_1.62/* tmp
cd tmp && zip -r -X $(OUT)/$(BASE)/$@ *
cd tmp && zip -r $(OUT)/$(BASE)/$@ *
cd $(TOPDIR); rm -rf tmp

extdata: directory
Expand Down
2 changes: 1 addition & 1 deletion archive/N-Card/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

N-Card_FW_2.55_v27.zip: directory
cd $(TOPDIR)/N-Card_FW_2.55_v27 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/N-Card_FW_2.55_v27 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/R4_original_M3_Simply/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

R4DS_Wood_R4_1.62.zip: directory
cd $(TOPDIR)/R4DS_Wood_R4_1.62 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/R4DS_Wood_R4_1.62 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp README.txt $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/SuperCard/DSONE/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

SuperCard_DSONE_EOS_sp6_20130129_5850fix.zip: directory
cd $(TOPDIR)/SuperCard_DSONE_EOS_sp6_20130129_5850fix && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/SuperCard_DSONE_EOS_sp6_20130129_5850fix && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/SuperCard/DSONE_SDHC_DSONEi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

SuperCard_DSONE_SDHC_EOS_sp6_20121206.zip: directory
cd $(TOPDIR)/SuperCard_DSONE_SDHC_EOS_sp6_20121206 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/SuperCard_DSONE_SDHC_EOS_sp6_20121206 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp SuperCard_DSONEi_FWUpdate_1.4.5.nds $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/SuperCard/DSTWO/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

SuperCard_DSTWO_EOS_1.14.zip: directory
cd $(TOPDIR)/SuperCard_DSTWO_EOS_1.14 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/SuperCard_DSTWO_EOS_1.14 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp -r SuperCard_DSTWO_FWUpdate* $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/ace3ds.com/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

ace3ds.com_Original_Kernel_20120308.zip: directory
cd $(TOPDIR)/ace3ds.com_Original_Kernel_20120308 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/ace3ds.com_Original_Kernel_20120308 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/acekard.cc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

acekard.cc_Acekard_3_AKAIO_1.8.7.zip: directory
cd $(TOPDIR)/acekard.cc_Acekard_3_AKAIO_1.8.7 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/acekard.cc_Acekard_3_AKAIO_1.8.7 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp acekardcc.jpg $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/acekard.com/AceKard_2_2.1/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

AKAIO_1.9.0-20121129.zip: directory
cd $(COMMON)/AKAIO_1.9.0-20121129 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(COMMON)/AKAIO_1.9.0-20121129 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp acekard*.jpg README.txt $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/acekard.com/AceKard_2i/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

AKAIO_1.9.0-20121129.zip: directory
cd $(COMMON)/AKAIO_1.9.0-20121129 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(COMMON)/AKAIO_1.9.0-20121129 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp -r Acekard_2i_FWUpdate $(OUT)/$(BASE)
Expand Down
4 changes: 2 additions & 2 deletions archive/acekard.com/AceKard_AceKard+/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

AceKard_akMenu_4.07.zip: directory
cd AceKard_akMenu_4.07 && zip -r -X $(OUT)/$(BASE)/$@ *
cd AceKard_akMenu_4.07 && zip -r $(OUT)/$(BASE)/$@ *

AKManager103_AKMenu110_MS_ENG.zip: directory
cd AKManager103_AKMenu110_MS_ENG && zip -r -X $(OUT)/$(BASE)/$@ *
cd AKManager103_AKMenu110_MS_ENG && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/acekard.com/AceKard_RPG/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

Acekard_RPG_Wood_RPG_1.62.zip: directory
cd Acekard_RPG_Wood_RPG_1.62 && zip -r -X $(OUT)/$(BASE)/$@ *
cd Acekard_RPG_Wood_RPG_1.62 && zip -r $(OUT)/$(BASE)/$@ *

old: directory
make -C $@
Expand Down
2 changes: 1 addition & 1 deletion archive/acekard.com/AceKard_RPG/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

AceKard_RPG_akMenu_4.11.zip: directory
cd $(TOPDIR)/AceKard_RPG_akMenu_4.11 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/AceKard_RPG_akMenu_4.11 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/amazekard.com/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

amazekard.com_Kernel_2.1.zip: directory
cd amazekard.com_Kernel_2.1 && zip -r -X $(OUT)/$(BASE)/$@ *
cd amazekard.com_Kernel_2.1 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp amazekard.com_FWUpdate_1.4.2.nds amazekard.png $(OUT)/$(BASE)
4 changes: 2 additions & 2 deletions archive/dsn5.com/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ directory:
mkdir -p $(OUT)/$(BASE)

dsn5.com_N5_Kernel_1.32.zip: directory
cd $(TOPDIR)/dsn5.com_N5_Kernel_1.32 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/dsn5.com_N5_Kernel_1.32 && zip -r $(OUT)/$(BASE)/$@ *

dsn5.com_N5i_Kernel_3.02.zip: directory
cd $(TOPDIR)/dsn5.com_N5i_Kernel_3.02 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/dsn5.com_N5i_Kernel_3.02 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp *.jpg README.txt $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/ex4ds.com/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

EX4DS_Kernel_2.01.zip: directory
cd $(TOPDIR)/EX4DS_Kernel_2.01 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/EX4DS_Kernel_2.01 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/g6flash.com_gbalpha.com/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

g6flash.com_gbalpha.com_Kernel_4.9a.zip: directory
cd $(TOPDIR)/g6flash.com_gbalpha.com_Kernel_4.9a && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/g6flash.com_gbalpha.com_Kernel_4.9a && zip -r $(OUT)/$(BASE)/$@ *
4 changes: 2 additions & 2 deletions archive/ge.ndsi.in/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ directory:
mkdir -p $(OUT)/$(BASE)

ge.ndsi.in_GEi_Kernel_4.2.zip: directory
cd $(TOPDIR)/ge.ndsi.in_GEi_Kernel_4.2 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/ge.ndsi.in_GEi_Kernel_4.2 && zip -r $(OUT)/$(BASE)/$@ *

ge.ndsi.in_GEi_PRO_Kernel_5.1.zip: directory
cd $(TOPDIR)/ge.ndsi.in_GEi_PRO_Kernel_5.1 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/ge.ndsi.in_GEi_PRO_Kernel_5.1 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp *.jpg README.txt ge.ndsi.in_GEi_FWUpdate_1.4.4.nds $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/iPlayer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

iPlayer_OS_1.3-20120323.zip: directory
cd $(TOPDIR)/iPlayer_OS_1.3-20120323 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/iPlayer_OS_1.3-20120323 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp README.md $(OUT)/$(BASE)
6 changes: 3 additions & 3 deletions archive/iTouchDS/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ directory:
mkdir -p $(OUT)/$(BASE)

iTouchDS_Kernel_1.9.zip: directory
cd $(TOPDIR)/iTouchDS_Kernel_1.9 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/iTouchDS_Kernel_1.9 && zip -r $(OUT)/$(BASE)/$@ *

iTouchDS_Kernel_2.1.zip: directory
cd $(TOPDIR)/iTouchDS_Kernel_2.1 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/iTouchDS_Kernel_2.1 && zip -r $(OUT)/$(BASE)/$@ *

iTouchDS_Kernel_3.9a.zip: directory
cd $(TOPDIR)/iTouchDS_Kernel_3.9a && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/iTouchDS_Kernel_3.9a && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/m3adapter.com/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ directory:
mkdir -p $(OUT)/$(BASE)

m3adapter.com_GMP-Z003_Sakura_1.49a.zip: directory
cd $(TOPDIR)/m3adapter.com_GMP-Z003_Sakura_1.49a && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/m3adapter.com_GMP-Z003_Sakura_1.49a && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp README.txt $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/ndsill.net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ old: directory
make -C $@

ndsill.net_3DS_Kernel_2.60.zip: directory
cd $(TOPDIR)/ndsill.net_3DS_Kernel_2.60 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/ndsill.net_3DS_Kernel_2.60 && zip -r $(OUT)/$(BASE)/$@ *

extdata: directory
cp README.txt $(OUT)/$(BASE)
2 changes: 1 addition & 1 deletion archive/ndsill.net/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

ndsill.net_original_Kernel_1.45.zip: directory
cd $(TOPDIR)/ndsill.net_original_Kernel_1.45 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/ndsill.net_original_Kernel_1.45 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/ndslr4.com/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

ndslr4.com_Kernel_1.34.zip: directory
cd $(COMMON)/R4SDHC_Original_Kernel_1.34 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(COMMON)/R4SDHC_Original_Kernel_1.34 && zip -r $(OUT)/$(BASE)/$@ *
2 changes: 1 addition & 1 deletion archive/pandora-ds.com/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ directory:
mkdir -p $(OUT)/$(BASE)

pandora-ds.com_Kernel.zip: directory
cd $(TOPDIR)/pandora-ds.com_Kernel && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/pandora-ds.com_Kernel && zip -r $(OUT)/$(BASE)/$@ *
6 changes: 3 additions & 3 deletions archive/pk3ds.org/old/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ directory:
mkdir -p $(OUT)/$(BASE)

pk3ds.org_3DS_V2.2.0-4J_upgrade_package.zip: directory
cd $(TOPDIR)/pk3ds.org_3DS_V2.2.0-4J_upgrade_package && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/pk3ds.org_3DS_V2.2.0-4J_upgrade_package && zip -r $(OUT)/$(BASE)/$@ *

pk3ds.org_DSi_V1.43_upgrade_package.zip: directory
cd $(TOPDIR)/pk3ds.org_DSi_V1.43_upgrade_package && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/pk3ds.org_DSi_V1.43_upgrade_package && zip -r $(OUT)/$(BASE)/$@ *

pk3ds.org_Kernel_2.12.zip: directory
cd $(TOPDIR)/pk3ds.org_Kernel_2.12 && zip -r -X $(OUT)/$(BASE)/$@ *
cd $(TOPDIR)/pk3ds.org_Kernel_2.12 && zip -r $(OUT)/$(BASE)/$@ *

Loading

0 comments on commit 5fa351a

Please sign in to comment.