Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/halfdanj/ofx
OpenFrameworks addon manager tool
https://github.com/halfdanj/ofx
Last synced: 24 days ago
JSON representation
OpenFrameworks addon manager tool
- Host: GitHub
- URL: https://github.com/halfdanj/ofx
- Owner: HalfdanJ
- Created: 2014-10-24T21:28:45.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-02T18:19:14.000Z (about 10 years ago)
- Last Synced: 2024-10-06T13:47:33.950Z (about 1 month ago)
- Language: Python
- Size: 203 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
OFX - OpenFrameworks Addon Manager
===
[![Build Status](https://travis-ci.org/HalfdanJ/ofx.svg)](https://travis-ci.org/HalfdanJ/ofx)### What is it
This is a tool aimed to help installing and managing addons for openFrameworks.### Features
- Install addons easily from the commandline
- Automatic install dependency addons based on the addon_config.mk file
- Read addon dependencies from your project, and install the required addons### Future features
- Save addon dependencies in projects
- Call apothecary to build dependency libraries automaticly for the current platform.## Install
```
pip install ofx
ofx --help
```### Install for development
- Clone the repository```
clone https://github.com/HalfdanJ/ofx.git
```- Go to the new folder
```
cd ofx
```- Install python virtualenv (a virtual python enviroment, recomended, but not required)
```
sudo pip install virtualenv
```- Create a virtual enviroment inside the ofx tool
```
virtualenv venv
```- Activate the virtual enviroment (to deactivate write `deactivate`)
```
. venv/bin/activate
```- Install the ofx tool
```
pip install --editable .
```- Run the tool
```
ofx --help
```