{"id":16654966,"url":"https://github.com/argmaster/scftolus","last_synced_at":"2026-04-26T09:32:14.279Z","repository":{"id":103222582,"uuid":"490067238","full_name":"Argmaster/scftolus","owner":"Argmaster","description":null,"archived":false,"fork":false,"pushed_at":"2022-05-15T18:56:51.000Z","size":478,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-26T20:57:48.425Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Argmaster.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2022-05-08T22:16:15.000Z","updated_at":"2022-05-15T14:44:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"67eb3e42-a519-47df-b685-00a91ba503f4","html_url":"https://github.com/Argmaster/scftolus","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Argmaster/scftolus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Argmaster%2Fscftolus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Argmaster%2Fscftolus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Argmaster%2Fscftolus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Argmaster%2Fscftolus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Argmaster","download_url":"https://codeload.github.com/Argmaster/scftolus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Argmaster%2Fscftolus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32292829,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T08:29:33.829Z","status":"ssl_error","status_checked_at":"2026-04-26T08:29:18.366Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-10-12T09:51:37.571Z","updated_at":"2026-04-26T09:32:14.260Z","avatar_url":"https://github.com/Argmaster.png","language":"C++","readme":"# scftolus - Luscus extension\r\n\r\nScftolus is a Luscus extension granting support for using scf as\r\ninput for generating Luscus scenes.\r\n\r\n# Building C++ code\r\n\r\n## Working directory\r\n\r\nIn OS shell, navigate to scftolus repository folder you have cloned from [https://github.com/Argmaster/scftolus](https://github.com/Argmaster/scftolus).\r\n\r\n```\r\ngit clone https://github.com/Argmaster/scftolus.git\r\n```\r\n\r\n## Installing dependencies\r\n\r\n**Required**: [Python 3.x](https://www.python.org/downloads/) interpreter, at least version 3.9\r\n\r\nAll project dependencies are included as git submodules.\r\n\r\n\u003e **Warning**:\r\n\u003e Watch out to use appropriate for your platform python interpreter alias.\r\n\u003e On Unix-like platforms python 3.x is commonly aliased as `python3`, on Windows\r\n\u003e you might have installed python loader which can be invoked with `py -3.9`.\r\n\r\nTo install dependencies use\r\n\r\n```\r\npython3 scripts/install_libs.py\r\n```\r\n\r\n## Compilation\r\n\r\n**Required**: [CMAKE](https://cmake.org/download/) version 3.19 or newer.\r\n\r\nCreate directory to store build files:\r\n\r\n```\r\nmkdir build\r\n```\r\n\r\nGenerate build system configuration files:\r\n\r\n```\r\ncmake ..\r\n```\r\n\r\n\u003e **Warning**:\r\n\u003e During development of this code, Ninja build system is used,\r\n\u003e but feel free to use your favorite, however in this example\r\n\u003e we will use ninja.\r\n\r\nBuild binary files:\r\n\r\n```\r\nninja\r\n```\r\n\r\n# Documentation\r\n\r\nOnline documentation is available at [argmaster.github.io/scftolus/](https://argmaster.github.io/scftolus/).\r\n\r\nTo build yourself documentation, you need Python 3 interpreter,\r\nat least version 3.9.\r\n\r\n\u003e **Warning**:\r\n\u003e Watch out to use appropriate for your platform python interpreter alias.\r\n\u003e On Unix-like platforms python 3.x is commonly aliased as `python3`, on Windows\r\n\u003e you might have installed python loader which can be invoked with `py -3.9`.\r\n\r\n\u003e **Tip**:\r\n\u003e Preferred way to install dependencies is to create virtual environment to store them.\r\n\u003e It can be done with:\r\n\u003e\r\n\u003e ```\r\n\u003e python3 -m venv .env\r\n\u003e ```\r\n\u003e\r\n\u003e Then virtual environment have to be enabled via:\r\n\u003e\r\n\u003e -   On Unix-like:\r\n\u003e\r\n\u003e     ```\r\n\u003e     source .env/bin/activate\r\n\u003e     ```\r\n\u003e\r\n\u003e -   On Windows:\r\n\u003e\r\n\u003e     -   Powershell:\r\n\u003e         ```\r\n\u003e         .env\\Scripts\\activate.bat\r\n\u003e         ```\r\n\u003e     -   cmd.exe:\r\n\u003e         ```\r\n\u003e         .env\\Scripts\\Activate.ps1\r\n\u003e         ```\r\n\u003e\r\n\u003e [See Python's venv documentation.](https://docs.python.org/3/library/venv.html)\r\n\r\nAfter, run following command to install doc\r\nbuilder and dependencies:\r\n\r\n```\r\npython -m pip install -r requirements-docs.txt\r\n```\r\n\r\nTo live view docs use\r\n\r\n```\r\nmkdocs serve\r\n```\r\n\r\nTo build docs web page use\r\n\r\n```\r\nmkdocs build\r\n```\r\n\r\nStatic site can be viewed by opening `./site/index.html` in web browser\r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fargmaster%2Fscftolus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fargmaster%2Fscftolus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fargmaster%2Fscftolus/lists"}