Correctly generate the GNU Autotools configuration in some recipes

This commit is contained in:
Ribbon 2025-06-06 11:21:16 -03:00
parent c9b45b6bc5
commit 8adc701839
10 changed files with 17 additions and 43 deletions

View File

@ -4,9 +4,7 @@
[source]
git = "https://github.com/johang/btfs"
rev = "2b372f4596df3ff97e3b39d58b144a7cbfff012a"
script = """
autoreconf -i
"""
script = "autoreconf -i"
[build]
template = "configure"
dependencies = [

View File

@ -3,9 +3,6 @@
# build instructions - https://github.com/MajenkoProjects/indexfs/blob/master/INSTALL
[source]
git = "https://github.com/MajenkoProjects/indexfs"
script = "./autogen.sh"
[build]
template = "custom"
script = """
./autogen.sh
cookbook_configure
"""
template = "configure"

View File

@ -2,12 +2,9 @@
#TODO probably wrong script, see https://github.com/philipl/pifs#readme
[source]
git = "https://github.com/philipl/pifs"
script = "./autogen.sh"
[build]
template = "custom"
template = "configure"
dependencies = [
"libfuse2",
]
script = """
./autogen.sh
cookbook_configure
"""

View File

@ -3,15 +3,12 @@
[source]
git = "https://github.com/s3fs-fuse/s3fs-fuse"
rev = "5371cd1468c84423729c334ac997f9621b797e9f"
script = "./autogen.sh"
[build]
template = "custom"
template = "configure"
dependencies = [
"libfuse2",
"curl",
"libxml2",
"openssl1",
]
script = """
./autogen.sh
cookbook_configure
"""

View File

@ -3,13 +3,10 @@
[source]
git = "https://github.com/phatina/simple-mtpfs"
rev = "19e7bb9b608b0c0dce2ee6f56fac75901bc69529"
script = "./autogen.sh"
[build]
template = "custom"
template = "configure"
dependencies = [
"libfuse3",
"libmtp",
]
script = """
./autogen.sh
cookbook_configure
"""

View File

@ -1,6 +1,7 @@
#TODO mm-common-prepare: not found
[source]
tar = "https://www.cairographics.org/releases/cairomm-1.18.0.tar.xz"
script = "./autogen.sh"
[build]
template = "custom"
dependencies = [
@ -8,7 +9,6 @@ dependencies = [
]
script = """
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
./autogen.sh
COOKBOOK_CONFIGURE="./configure"
cookbook_configure
"""

View File

@ -1,14 +1,11 @@
#TODO make gtk4 work
[source]
tar = "https://gitlab.gnome.org/otrocodigo/gspell/-/archive/1.11.1/gspell-1.11.1.tar.bz2"
script = "./autogen.sh"
[build]
template = "custom"
template = "configure"
dependencies = [
"glib",
"gtk4",
"libicu",
]
script = """
./autogen.sh
cookbook_configure
"""

View File

@ -2,9 +2,6 @@
[source]
git = "https://codeberg.org/gumbo-parser/gumbo-parser"
rev = "23af2f7c5a9da7e7ea42fcc2c573df52e4a3a5be"
script = "./autogen.sh"
[build]
template = "custom"
script = """
./autogen.sh
cookbook_configure
"""
template = "configure"

View File

@ -2,11 +2,11 @@
[source]
git = "https://github.com/wolfSSL/wolfssl"
rev = "37884f864d6fd9b04f44677cb04da15d0c9d6526"
script = "./autogen.sh"
[build]
template = "custom"
script = """
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
./autogen.sh
COOKBOOK_CONFIGURE="./configure"
cookbook_configure
"""

View File

@ -2,12 +2,6 @@
[source]
git = "https://github.com/vapoursynth/vapoursynth"
rev = "3157049549a0940359b37004aeeeebd8f1db665e"
script = "./autogen.sh"
[build]
template = "custom"
dependencies = [
"library1",
]
script = """
./autogen.sh
cookbook_configure
"""
template = "configure"