diff --git a/recipes/wip/dev/other/argp-standalone/recipe.toml b/recipes/wip/dev/other/argp-standalone/recipe.toml new file mode 100644 index 00000000..999abe80 --- /dev/null +++ b/recipes/wip/dev/other/argp-standalone/recipe.toml @@ -0,0 +1,5 @@ +[source] +git = "https://github.com/argp-standalone/argp-standalone" + +[build] +template = "meson" diff --git a/recipes/wip/dev/other/elfutils/recipe.toml b/recipes/wip/dev/other/elfutils/recipe.toml index dcc701ab..f080a3b7 100644 --- a/recipes/wip/dev/other/elfutils/recipe.toml +++ b/recipes/wip/dev/other/elfutils/recipe.toml @@ -1,5 +1,17 @@ -#TODO compilation error +# Compiled, not tested [source] tar = "https://sourceware.org/elfutils/ftp/0.190/elfutils-0.190.tar.bz2" + [build] template = "configure" +dependencies = [ + "zlib", + "argp-standalone", + "musl-fts", + "musl-obstack", + # "gettext", +] +configureflags = [ + "--disable-libdebuginfod", + "--disable-debuginfod", +] \ No newline at end of file diff --git a/recipes/wip/dev/other/musl-fts/recipe.toml b/recipes/wip/dev/other/musl-fts/recipe.toml new file mode 100644 index 00000000..fb6a2483 --- /dev/null +++ b/recipes/wip/dev/other/musl-fts/recipe.toml @@ -0,0 +1,8 @@ +[source] +git = "https://github.com/void-linux/musl-fts" +script = """ +./bootstrap.sh +""" + +[build] +template = "configure" diff --git a/recipes/wip/dev/other/musl-obstack/recipe.toml b/recipes/wip/dev/other/musl-obstack/recipe.toml new file mode 100644 index 00000000..c678cb94 --- /dev/null +++ b/recipes/wip/dev/other/musl-obstack/recipe.toml @@ -0,0 +1,8 @@ +[source] +git = "https://github.com/void-linux/musl-obstack" +script = """ +./bootstrap.sh +""" + +[build] +template = "configure"