blob: 2684855001def90ebdee74bd4822ca1d1241adea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# This field required, but its will change nothing if script = "" specified.
build_system = "CMake" # For example, supported build systems:
# Enumerate from src/pkgtoolkit
# pub enum BuildSystems {
# Make,
# CMake,
# Meson,
# Cargo
# }
# Environment variables, can be empty or removed
env = """
export SHELL=/usr/bin/zsh
"""
# Custom script like from INSTALL
script = """
make -j6 -f build/Makefile all
"""
|