Skip to content

Commit

Permalink
Extract data and strip music
Browse files Browse the repository at this point in the history
  • Loading branch information
JayFoxRox committed Jan 12, 2020
1 parent 4642c5d commit b231178
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion desktop_version/Makefile.nxdk
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,17 @@ all_local: all

include $(NXDK_DIR)/Makefile

download_data: $(OUTPUT_DIR)/data.zip

# You need data.zip from http://distractionware.com/blog/category/vvvvvv-make-and-play/
download_data:
$(OUTPUT_DIR)/data.zip:
@mkdir -p $(OUTPUT_DIR)
wget -N http://www.flibitijibibo.com/VVVVVV-MP-10202016.zip -O VVVVVV-MP.zip
unzip -p VVVVVV-MP.zip VVVVVV-MP/data.zip > $(OUTPUT_DIR)/data.zip
rm -f VVVVVV-MP.zip

install_data: $(OUTPUT_DIR)/data.zip
@mkdir -p $(OUTPUT_DIR)/VVVVVV
unzip -o $(OUTPUT_DIR)/data.zip -d $(OUTPUT_DIR)/VVVVVV; true
rm -f $(OUTPUT_DIR)/VVVVVV/vvvvvvmusic.vvv
rm -f $(OUTPUT_DIR)/data.zip

0 comments on commit b231178

Please sign in to comment.