5e7fadb9ca
redbear-ci / check (push) Has been cancelled
Converting [source] git=/tar= to path="source" removed the URL cookbook parsed
the package version from, so non-Cargo recipes without an explicit
[package].version failed at packaging ('cannot guess version', hit on
ninja-build). Add version = "0.3.1" (the branch version, matching the vendored
convention e.g. brush) to the 3 affected recipes, and make vendor-recipe.sh add
it automatically on future conversions.
26 lines
653 B
TOML
26 lines
653 B
TOML
[source]
|
|
# Vendored local fork (full-fork model): builds from the committed source/
|
|
# tree (offline, reproducible). source/ = pristine upstream + the patches below
|
|
# BAKED IN. .patch files kept tracked so a version bump can re-apply them via
|
|
# sync-recipe-source.sh.
|
|
# upstream: https://gitlab.redox-os.org/redox-os/libtool
|
|
path = "source"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
DYNAMIC_INIT
|
|
unset CFLAGS
|
|
cp -r "${COOKBOOK_SOURCE}"/. ./
|
|
./bootstrap \
|
|
--skip-po \
|
|
--force \
|
|
--gnulib-srcdir=./gnulib
|
|
COOKBOOK_CONFIGURE="./configure"
|
|
cookbook_configure
|
|
"""
|
|
|
|
[package]
|
|
version = "0.3.1"
|
|
description = "GNU Libtool (shared library support)"
|