From 277d6423533178ecde67b2ee0c504b718e5321a6 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Wed, 20 Sep 2023 10:16:00 -0600 Subject: [PATCH] bzip2: install header file --- recipes/bzip2/recipe.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/bzip2/recipe.toml b/recipes/bzip2/recipe.toml index 3b7bf86aa..e2ad7a1a5 100644 --- a/recipes/bzip2/recipe.toml +++ b/recipes/bzip2/recipe.toml @@ -16,6 +16,8 @@ rsync -av --delete "${COOKBOOK_SOURCE}/" ./ bzip2 mkdir -pv "${COOKBOOK_STAGE}/bin" cp -v bzip2 "${COOKBOOK_STAGE}/bin" +mkdir -pv "${COOKBOOK_STAGE}/include" +cp -v bzlib.h "${COOKBOOK_STAGE}/include" mkdir -pv "${COOKBOOK_STAGE}/lib" cp -v libbz2.a "${COOKBOOK_STAGE}/lib" """ -- GitLab