A build framework for your complex projects
Project description
Accendino, a complex project builder
About
Accendino (lighter in italian) was originally an helper script that avoids the burden of following the Ogon installation instructions and do it for you. But it evolved to a program to build your complicated projects on multiple platforms.
Accendino can also be used to checkout all your project sources if you wish to quickly have a development environment.
You can see the manual or the changelog.
Installing
$ python3 -m venv _v
$ source _v/bin/activate
(_v) $ pip install accendino
Deploying Ogon
Even if Accendino aims to build any of your projects with multiple dependencies, it is still useful to deploy ogon.
Please note, that for now accendino doesn't perform system operation required for a working ogon installation (systemd units, PAM configuration, dbus authorizations). So refer to the ogon build guide to achieve these.
To quicky install all the Ogon stack in /opt/ogon in release mode:
# accendino --prefix=/opt/ogon ogon.accendino
To quickly install only the Ogon RDP server in /opt/ogon-dev in debug mode:
# accendino --prefix=/opt/ogon-dev --build-type=debug --targets=ogon ogon.accendino
To install the forgiare version of Ogon in /opt/forgiare in debug mode:
# accendino --prefix=/opt/forgiare --build-type=debug forgiare.accendino
Using Accendino for your projects
Accendino is a great tool to build complex projects on multiple platform. In Accendino source files you can:
- pull your sources from git or from local locations;
- express dependencies between your build artifacts;
- list some platform packages that are needed for the build on a given platform. Currently we support
dpkg,rpm,pacman,pkg,chocolateyandbrew. And of course you can have dynamic lists, because it's very common that on your linux distribution a package has been renamed or removed between distro versions; - the Accendino source file is interpreted as a python file that means that you can code any kind of build logic using the python language;
- Accendino provides some useful objects to express builds of artifacts that use
cmake,qmake,autotools,meson, and if unhappy with these you can always specify the commands to invoke (or contribute yours);
See the manual for the documentation of what's available to your source file.
Here's some sample pieces of Accendino files for freerdp with the file to build the ffmpeg dependency or use system provided packages:
# ffmpeg.accendino
ffmpeg_pkgDeps = {
UBUNTU_LIKE: ['libavcodec-dev', 'libavfilter-dev', 'libavformat-dev', 'libavutil-dev', 'libswscale-dev',
'libavdevice-dev', 'libpostproc-dev'],
REDHAT_LIKE: ['libavcodec-free-devel', 'libswscale-free-devel'],
}
ffmpeg_fromSources = False
if targetDistribId in ('mingw', 'Windows', 'Darwin',):
ffmpeg_fromSources = True
if ffmpeg_fromSources:
extraArgs = []
if crossCompilation:
extraArgs.append('--enable-cross-compile')
if targetDistribId == 'mingw':
flags = {
'i686': ['--arch=i686', '--target-os=mingw32', '--cross-prefix=i686-w64-mingw32-'],
'x86_64': ['--arch=x86_64', '--target-os=mingw64', '--cross-prefix=x86_64-w64-mingw32-']
}
extraArgs += flags.get(targetArch, [])
extraArgs.append('--disable-mediafoundation')
if targetDistribId == 'Darwin':
extraArgs += ['--enable-shared', '--disable-static',
'--enable-swscale', '--disable-asm', '--disable-libxcb',
'--disable-xlib', '--enable-avcodec',
]
nasmForAll = {
'Darwin': ['nasm'],
'Windows': ['choco/nasm|path/nasm'],
}
for distrib in ('Ubuntu', 'Debian', 'Redhat', 'Fedora',):
nasmForAll[f'{distrib}'] = ['nasm']
nasmForAll[f'{distrib}->mingw@x86_64'] = ['nasm']
ARTIFACTS += [
CustomCommandBuildArtifact('ffmpeg', [],
GitSource('https://github.com/FFmpeg/FFmpeg.git', 'n7.1'),
prepare_cmds=[
[NativePath('{srcdir}', 'configure'), '--prefix={prefix}', '--disable-doc', '--disable-programs', '--disable-securetransport'] + extraArgs
],
pkgs=nasmForAll,
provides=['ffmpeg-artifact']
),
]
else:
ARTIFACTS += [
DepsBuildArtifact('ffmpeg-artifact', [], pkgs=ffmpeg_pkgDeps)
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file accendino-0.6.0.tar.gz.
File metadata
- Download URL: accendino-0.6.0.tar.gz
- Upload date:
- Size: 72.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
721a03c633bbfe5b819b6418c72379a26a18708c27396ec4cbcdb395e76fa7f3
|
|
| MD5 |
ce019ec8c7e3a6f994dcf03e96a9a6c8
|
|
| BLAKE2b-256 |
182a0d84816e204187b819ca583d67bd48f6e08ac3c087c47c2608ac9051d526
|
File details
Details for the file accendino-0.6.0-py3-none-any.whl.
File metadata
- Download URL: accendino-0.6.0-py3-none-any.whl
- Upload date:
- Size: 67.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
306ff9ff22faacc4a768c062dd007537f1fb54ebb5aac442ae0f0e36cb2f15a9
|
|
| MD5 |
a5fbbfe8e244656b166aa267c15fe92a
|
|
| BLAKE2b-256 |
749cfd1fffccec25a1f98d73ee5d315cb200ffa2bf514fc7ded17c5ed9f01379
|