https://github.com/wenzel/kdesrc-build.py
An attempt to rewrite the KDE build system into Python
https://github.com/wenzel/kdesrc-build.py
Last synced: 11 months ago
JSON representation
An attempt to rewrite the KDE build system into Python
- Host: GitHub
- URL: https://github.com/wenzel/kdesrc-build.py
- Owner: Wenzel
- Created: 2015-09-12T20:18:31.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-13T14:27:00.000Z (almost 11 years ago)
- Last Synced: 2025-02-21T21:25:37.953Z (over 1 year ago)
- Language: Python
- Size: 121 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kdesrc-build.py
An attempt to rewrite the `kdesrc-build` script into Python.
# Requirements
- `Python` `>=` `3.4`
- `virtualenv`
# Setup
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
# Usage
"""
Usage:
kdesrc-build.py [options] ...
options:
-h --help Show this screen.
--version Show version.
"""
Exemple:
./kdesrc-build.py extra-cmake-modules
# Done
- [x] get, build and install a simple project
- [x] handle project group (components, modules, ...)
# TODO
- [ ] add `-p`, `--pretend` option
- [ ] handle a configuration file
- [ ] handle a project build dependencies
- [ ] add nice user output
- [ ] add good logging capabilities