{"id":19992882,"url":"https://github.com/timj/scons","last_synced_at":"2026-02-26T08:18:14.692Z","repository":{"id":66957145,"uuid":"60796014","full_name":"timj/scons","owner":"timj","description":null,"archived":false,"fork":false,"pushed_at":"2016-07-21T23:39:52.000Z","size":11887,"stargazers_count":0,"open_issues_count":2,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-12T12:25:13.822Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"XSLT","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/timj.png","metadata":{"files":{"readme":"README-local","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":"2016-06-09T18:05:21.000Z","updated_at":"2016-06-09T18:11:57.000Z","dependencies_parsed_at":"2023-02-28T02:31:25.482Z","dependency_job_id":null,"html_url":"https://github.com/timj/scons","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timj%2Fscons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timj%2Fscons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timj%2Fscons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timj%2Fscons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timj","download_url":"https://codeload.github.com/timj/scons/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241435174,"owners_count":19962400,"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":[],"created_at":"2024-11-13T04:52:21.878Z","updated_at":"2026-02-26T08:18:09.626Z","avatar_url":"https://github.com/timj.png","language":"XSLT","funding_links":[],"categories":[],"sub_categories":[],"readme":"# __COPYRIGHT__\n\n                 SCons - a software construction tool\n\nThis is the scons-README file for a version of SCons packaged for local\nexecution--that is, execution out of a specific local directory, without\nhaving to install SCons as a system-wide utility.\n\nYou are likely reading this file in one of the following two situations:\n\n    1)  You have unpacked an scons-local-{version} package and are\n        examining the contents.\n\n        In this case, you are presumably interested in using this\n        package to include a local copy of SCons with some other\n        software that you package, so that you can use SCons to build\n        your software without forcing all of your users to have it fully\n        installed.  Instructions for this can be found below.\n\n        If you are not looking to use SCons in this way, then please\n        use either the scons-{version} package to install SCons on your\n        system, or the scons-src-{version} package if you want the full\n        source to SCons, including its packaging code and underlying\n        tests and testing infrastructure.\n\n    2)  This file was included in some other software package so that\n        the package could be built using SCons.\n\n        In this case, follow the instructions provided with the\n        rest of the software package for how to use SCons to build\n        and/or install the software.  The file containing build and\n        installation instructions will typically be named README or\n        INSTALL.\n\nLATEST VERSION\n==============\n\nBefore going further, you can check for the latest version of the\nscons-local package, or any SCons package, at the SCons download page:\n\n        http://www.scons.org/download.html\n\n\nEXECUTION REQUIREMENTS\n======================\n\nRunning SCons requires Python version 2.4 or later.  There should be\nno other dependencies or requirements to run SCons.\n\nThe default SCons configuration assumes use of the Microsoft Visual C++\ncompiler suite on WIN32 systems, and assumes a C compiler named 'cc',\na C++ compiler named 'c++', and a Fortran compiler named 'g77' (such\nas found in the GNU C compiler suite) on any other type of system.\nYou may, of course, override these default values by appropriate\nconfiguration of Environment construction variables.\n\n\nINSTALLATION\n============\n\nInstallation of this package should be as simple as unpacking the\narchive (either .tar.gz or .zip) in any directory (top-level or a\nsubdirectory) within the software package with which you want to ship\nSCons.\n\nOnce you have installed this package, you should write an SConstruct\nfile at the top level of your source tree to build your software as you\nsee fit.\n\nThen modify the build/install instructions for your package to instruct\nyour users to execute SCons as follows (if you installed this package in\nyour top-level directory):\n\n        $ python scons.py\n\nOr (if, for example, you installed this package in a subdirectory named\n\"scons\"):\n\n        $ python scons/scons.py\n\nThat should be all you have to do.  (If it isn't that simple, please let\nus know!)\n\n\nCONTENTS OF THIS PACKAGE\n========================\n\nThis scons-local package consists of the following:\n\nscons-LICENSE\n        A copy of the copyright and terms under which SCons is\n        distributed (the Open Source Initiative-approved MIT license).\n\n        A disclaimer has been added to the beginning to make clear that\n        this license applies only to SCons, and not to any separate\n        software you've written with which you're planning to package\n        SCons.\n\nscons-README\n        What you're looking at right now.\n\nscons-local-{version}/\n        The SCons build engine.  This is structured as a Python\n        library.\n\nscons.py\n        The SCons script itself.  The script sets up the Python\n        sys.path variable to use the build engine found in the\n        scons-local-{version}/ directory in preference to any other\n        SCons build engine installed on your system.\n\n\nDOCUMENTATION\n=============\n\nBecause this package is intended to be included with other software by\nexperienced users, we have not included any SCons documentation in this\npackage (other than this scons-README file you're reading right now).\n\nIf, however, you need documentation about SCons, then consult any of the\nfollowing from the corresponding scons-{version} or scons-src-{version}\npackage:\n\n        The RELEASE.txt file (src/RELEASE.txt file in the\n        scons-src-{version} package), which contains notes about this\n        specific release, including known problems.\n\n        The CHANGES.txt file (src/CHANGES.txt file in the\n        scons-src-{version} package), which contains a list of changes\n        since the previous release.\n\n        The scons.1 man page (doc/man/scons.1 in the scons-src-{version}\n        package), which contains a section of small examples for getting\n        started using SCons.\n\nAdditional documentation for SCons is available at:\n\n        http://www.scons.org/doc.html\n\n\nLICENSING\n=========\n\nSCons is distributed under the MIT license, a full copy of which is\navailable in the scons-LICENSE file in this package. The MIT license is\nan approved Open Source license, which means:\n\n        This software is OSI Certified Open Source Software.  OSI\n        Certified is a certification mark of the Open Source Initiative.\n\nMore information about OSI certifications and Open Source software is\navailable at:\n\n        http://www.opensource.org/\n\n\nREPORTING BUGS\n==============\n\nYou can report bugs either by following the \"Tracker - Bugs\" link\non the SCons project page:\n\n        http://sourceforge.net/projects/scons/\n\nor by sending mail to the SCons developers mailing list:\n\n        scons-devel@lists.sourceforge.net\n\n\nMAILING LISTS\n=============\n\nA mailing list for users of SCons is available.  You may send questions\nor comments to the list at:\n\n        scons-users@lists.sourceforge.net\n\nYou may subscribe to the scons-users mailing list at:\n\n        http://lists.sourceforge.net/lists/listinfo/scons-users\n\n\nFOR MORE INFORMATION\n====================\n\nCheck the SCons web site at:\n\n        http://www.scons.org/\n\n\nAUTHOR INFO\n===========\n\nSteven Knight\nknight at baldmt dot com\nhttp://www.baldmt.com/~knight/\n\nWith plenty of help from the SCons Development team:\n        Chad Austin\n        Charles Crain\n        Steve Leblanc\n        Anthony Roach\n        Terrel Shumway\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimj%2Fscons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimj%2Fscons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimj%2Fscons/lists"}