From 28bba53928a7778758b50f204240b08d8d98202a Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Mon, 27 Mar 2023 14:25:43 +0200 Subject: [PATCH] Replace the rust install preset with an empty section Using install -Dm755 ... is preferable over cargo install --- newapkbuild.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newapkbuild.in b/newapkbuild.in index 9962796..f5cff9d 100644 --- a/newapkbuild.in +++ b/newapkbuild.in @@ -200,8 +200,8 @@ __EOF__ package_rust() { cat >>APKBUILD<<__EOF__ - cargo install --frozen --offline --path . --root="\$pkgdir/usr" - rm "\$pkgdir"/usr/.crates* + # Replace with proper package command(s) + : __EOF__ }