50b731f1b7
Derivative of Redox OS (https://www.redox-os.org) adding: - AMD GPU driver (amdgpu) via LinuxKPI compat layer - ext4 filesystem support (ext4d scheme daemon) - ACPI fixes for AMD bare metal (x2APIC, DMAR, IVRS, MCFG) - Custom branding (hostname, os-release, boot identity) Build system is full upstream Redox with RBOS overlay in local/. Patches for kernel, base, and relibc are symlinked from local/patches/ and protected from make clean/distclean. Custom recipes live in local/recipes/ with symlinks into the recipes/ search path. Build: make all CONFIG_NAME=redbear-full Sync: ./local/scripts/sync-upstream.sh
35 lines
833 B
TOML
35 lines
833 B
TOML
[source]
|
|
git = "https://gitlab.redox-os.org/redox-os/timidity.git"
|
|
branch = "redox"
|
|
script = """
|
|
autoreconf -f -i
|
|
|
|
wget -O autoconf/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
|
|
"""
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
export LDFLAGS="-static"
|
|
|
|
COOKBOOK_CONFIGURE_FLAGS=(
|
|
--build="$(gcc -dumpmachine)"
|
|
--host="${TARGET}"
|
|
--prefix=""
|
|
--enable-vt100
|
|
)
|
|
|
|
cookbook_configure
|
|
|
|
# Create configuration files
|
|
mkdir -pv "${COOKBOOK_STAGE}/etc/timidity"
|
|
echo "soundfont /share/generaluser-gs/generaluser-gs.sf2" >> "${COOKBOOK_STAGE}/etc/timidity/timidity.cfg"
|
|
|
|
mkdir -pv "${COOKBOOK_STAGE}/share/timidity"
|
|
echo "soundfont /share/generaluser-gs/generaluser-gs.sf2" >> "${COOKBOOK_STAGE}/share/timidity/timidity.cfg"
|
|
"""
|
|
|
|
[package]
|
|
dependencies = [
|
|
"generaluser-gs",
|
|
] |