https://github.com/clearlinux/common
Developer tooling framework
https://github.com/clearlinux/common
distro-tools integration-framework rpm-builder
Last synced: 8 months ago
JSON representation
Developer tooling framework
- Host: GitHub
- URL: https://github.com/clearlinux/common
- Owner: clearlinux
- License: gpl-3.0
- Created: 2017-12-20T20:25:48.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-12T06:54:30.000Z (8 months ago)
- Last Synced: 2025-02-12T07:52:33.710Z (8 months ago)
- Topics: distro-tools, integration-framework, rpm-builder
- Language: Makefile
- Size: 5.41 MB
- Stars: 56
- Watchers: 11
- Forks: 21
- Open Issues: 6
-
Metadata Files:
- Readme: README-advanced.md
- License: COPYING
Awesome Lists containing this project
README
## Advanced topics
### Manual setup
If you did not run the user-setup script (see "Automated setup" section in the
[main README](README.md), you will want to set up the developer tooling
workspace manually. This section provides general documentation for the manual
setup process, and it is not meant to be exhaustive.On your Clear Linux system, create a workspace for Clear Linux development
work:```
$ mkdir clearlinux
```Clone this repo into a `projects` directory within the workspace:
```
$ cd clearlinux
$ mkdir projects
$ git clone https://github.com/clearlinux/common projects/common
```Create the toplevel tooling Makefile:
```
$ ln -s projects/common/Makefile.toplevel Makefile
```Clone all Clear Linux package and project repositories:
```
$ make clone
```Note: You can clone the repos in parallel by using make's `-j` option.
At this point, the `packages` directory will contain all Clear Linux package
repos, and `projects` will contain common, clr-bundles, and autospec repos.