25 lines
635 B
TOML
25 lines
635 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]
|
|
description = "GNU Libtool (shared library support)"
|