mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
Merge branch 'sqlite-test' into 'master'
Port tcl and add sqlite-test See merge request redox-os/redox!2184
This commit is contained in:
commit
4f835f1979
@ -1,9 +1,17 @@
|
||||
#TODO maybe wrong template, see https://www.tcl.tk/doc/howto/compile.html#unix
|
||||
#TODO compiled but not tested
|
||||
[source]
|
||||
tar = "http://prdownloads.sourceforge.net/tcl/tcl8.6.13-src.tar.gz"
|
||||
blake3 = "a44611c5d38d7dbc1e6ce49d6a78ae7d43817b861412b54b30357bc431510978"
|
||||
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
cd unix
|
||||
DYNAMIC_INIT
|
||||
COOKBOOK_CONFIGURE="$COOKBOOK_SOURCE/unix/configure"
|
||||
COOKBOOK_CONFIGURE_FLAGS+=(
|
||||
ac_cv_func_memcmp_working=yes
|
||||
tcl_cv_strstr_unbroken=
|
||||
tcl_cv_strtoul_unbroken=
|
||||
)
|
||||
cookbook_configure
|
||||
"""
|
||||
18
recipes/wip/tests/sqlite-test/recipe.toml
Normal file
18
recipes/wip/tests/sqlite-test/recipe.toml
Normal file
@ -0,0 +1,18 @@
|
||||
[source]
|
||||
git = "https://github.com/sqlite/sqlite"
|
||||
shallow_clone = true
|
||||
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
mkdir -pv "${COOKBOOK_STAGE}/home/user/sqlite-test"
|
||||
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/home/user/sqlite-test"
|
||||
"""
|
||||
|
||||
[package]
|
||||
dependencies = [
|
||||
"gcc13",
|
||||
"gnu-binutils",
|
||||
"gnu-make",
|
||||
"tcl",
|
||||
]
|
||||
Loading…
Reference in New Issue
Block a user