carburetor

(★ 13)

No description available.

File Explorer

  • .gitignore
  • .gitlab-ci.yml
  • carburetor.doap
  • CHANGELOG
  • CONTRIBUTING.md
  • io.frama.tractor.carburetor.json
  • LICENSE
  • meson.build
  • pyproject.toml
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

meson

View Details ▼

SCons-like build system that uses Python as a front-end language and Ninja as a building backend.

meson init

Generate a project with default values:

meson init {{[-l|--language]}} c {{[-n|--name]}} {{myproject}} --version {{0.1}}

Generate a C project with a given name and version:

meson {{[build|setup build]}}

Configure a directory named `build` with default values for compilation:

🔍

flatpak run

View Details ▼

Run flatpak applications and runtimes.

flatpak run {{com.example.app}}

Run an installed application:

flatpak run --branch={{stable|beta|master|...}} {{com.example.app}}

Run an installed application from a specific branch e.g. stable, beta, master:

flatpak run --command={{sh}} {{com.example.app}}

Run an interactive shell inside a flatpak:

🔍

flatpak

View Details ▼

Build, install, and run flatpak applications and runtimes.

flatpak run {{com.example.app}}

Run an installed application:

flatpak install {{remote_name}} {{com.example.app}}

Install an application from a remote source:

flatpak list --app

List installed applications, ignoring runtimes:

// repository documentation