{"id":15443990,"url":"https://github.com/tardo/musicrap","last_synced_at":"2025-03-28T08:12:31.705Z","repository":{"id":107988430,"uuid":"154046544","full_name":"Tardo/musicrap","owner":"Tardo","description":"Game for MVJam IV","archived":false,"fork":false,"pushed_at":"2018-10-23T11:41:17.000Z","size":5055,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-02-02T08:42:24.672Z","etag":null,"topics":["fmod","game","jam","sfml"],"latest_commit_sha":null,"homepage":"https://itch.io/jam/mvjam4","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tardo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-21T19:53:16.000Z","updated_at":"2018-10-23T11:41:18.000Z","dependencies_parsed_at":"2023-05-15T11:30:40.429Z","dependency_job_id":null,"html_url":"https://github.com/Tardo/musicrap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tardo%2Fmusicrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tardo%2Fmusicrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tardo%2Fmusicrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tardo%2Fmusicrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tardo","download_url":"https://codeload.github.com/Tardo/musicrap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245991584,"owners_count":20706129,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fmod","game","jam","sfml"],"created_at":"2024-10-01T19:38:33.029Z","updated_at":"2025-03-28T08:12:31.691Z","avatar_url":"https://github.com/Tardo.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MusiCrap - MVJam IV \n\n\n## - DEPENDENCIES\n- SFML v2.5 (Not Included)\n- ZPG (Not Included)\n- FMOD (Included)\n\n# COMPILATION PROCESS (LINUX)\n#### Install SFML v2.5.1 (Static Mode)\n```\nsudo apt-get install cmake zlib1g-dev libfreetype6-dev libx11-dev libxrandr-dev libxcb1-dev libx11-xcb-dev libxcb-randr0-dev libxcb-image0-dev libflac-dev libogg-dev libvorbis-dev libvorbisenc2 libvorbisfile3 libopenal-dev libudev-dev libsndfile1-dev libglew-dev\nwget -O ~/sfmlv2.5.1.tar.gz https://github.com/SFML/SFML/archive/2.5.1.tar.gz\ntar -zxvf ~/sfmlv2.5.1.tar.gz -C ~/\ncd ~/SFML-2.5.1\ncmake -DBUILD_SHARED_LIBS:BOOL=FALSE -DCMAKE_INSTALL_PREFIX:PATH=/usr .\nmake\nsudo make install\n```\n#### Install ZPG\n```\nwget -O ~/zpgv1.0.0.zip https://gitlab.com/Tardo/Zpg/-/archive/master/Zpg-master.zip\nunzip ~/zpgv1.0.0.zip -d ~/\ncd ~/Zpg-master\ncmake -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr .\nmake Zpg\nmake zpg_packer\nsudo make install\n```\n### Compile Game\n```\ngit clone https://github.com/Tardo/MVRunner.git --depth=1\ncd MVRunner/\nmkdir build-release/\ncd build-release/\ncmake -DCMAKE_BUILD_TYPE:STRING=Release ..\nmake\n```\n-  ### Create ZPG Assets Package\n  ```\n  make create_zpg\n  ```\n-  ### Create Distribution Packages (Optional)\n  ```\n  cpack --debug --verbose -C CPackConfig.cmake\n  ```\n  \n# COMPILATION PROCESS (WINDOWS)\n#### Install SFML v2.5.1 (Static Mode)\n```\ncurl -LfsS -o sfml.zip https://www.sfml-dev.org/files/SFML-2.5.1-windows-vc15-64-bit.zip\n7z x sfml.zip\nmd C:\\Program Files\\SFML-2.5.1\nmove SFML-2.5.1 C:\\Program Files\\\n\n```\n\n#### Install ZLib\n```\ncurl -LfsS -o zlib-1.2.11.tar.gz http://zlib.net/zlib-1.2.11.tar.gz\n7z x zlib-1.2.11.tar.gz\n7z x zlib-1.2.11.tar\ncd zlib-1.2.11\nmd build \u0026 cd build\ncmake -Werror=dev -G\"Visual Studio 15 2017 Win64\" ..\ncd ..\ncmake --build build --config Release --target install\n```\n\n#### Install ZPG\n```\ncurl -LfsS -o libzpg.zip https://gitlab.com/Tardo/Zpg/-/archive/master/Zpg-master.zip\n7z x libzpg.zip\ncd Zpg-master\nmd build \u0026 cd build\ncmake -Werror=dev -G\"Visual Studio 15 2017 Win64\" -DZLIB_ROOT=\"C:\\Program Files\\zlib\" -DCMAKE_BUILD_TYPE=Release ..\ncd ..\ncmake --build build --config Release --target Zpg\ncmake --build build --config Release --target zpg_packer\ncmake --build build --config Release --target install\ncd ..\n```\n### Compile Game\n```\ngit clone https://github.com/Tardo/musicrap.git --depth=1\ncd musicrap/\nmkdir build-release/\ncd build-release/\nmd build \u0026 cd build\nset ZLIB_ROOT=C:\\Program Files\\zlib\nset ZPG_ROOT=C:\\Program Files\\libZpg\nset SFML_ROOT=c:\\projects\\SFML-2.5.1_win64\ncmake -Werror=dev -G \"Visual Studio 15 2017 Win64\" -DCMAKE_BUILD_TYPE=Release -DZLIB_ROOT=\"%ZLIB_ROOT%\" -DZPG_PACKER_BIN=\"%ZPG_ROOT%\\bin\\zpg_packer.exe\" ..\ncmake --build build --config Release --target MusiCrap\n```\n-  ### Create ZPG Assets Package\n  ```\n  cmake --build build --config Release --target create_zpg\n  ```\n-  ### Create Distribution Packages (Optional)\n  ```\n  cmake --build build --config Release --target package\n  ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftardo%2Fmusicrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftardo%2Fmusicrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftardo%2Fmusicrap/lists"}