From 0fbae7ed85fdbec862e79075483879738b225c08 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 13 Jun 2026 19:59:24 +0300 Subject: [PATCH] Switch to new package format --- pkg.info => info.yml | 14 +++++++++++--- source.sh => recipe.sh | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) rename pkg.info => info.yml (54%) rename source.sh => recipe.sh (96%) diff --git a/pkg.info b/info.yml similarity index 54% rename from pkg.info rename to info.yml index aef8a76..37ed816 100644 --- a/pkg.info +++ b/info.yml @@ -1,10 +1,18 @@ name: googletest description: Google Testing and Mocking Framework version: 1.17.0 +revision: 2 url: https://github.com/google/googletest license: BSD-3-Clause +maintainers: + - enumdev@enumerated.dev architecture: any -depends: ["gcc-libs", "glibc"] -optional_depends: ["python3"] -make_depends: ["cmake", "python3"] type: source +depends: + - gcc-libs + - glibc +optional_depends: + - python3 +make_depends: + - cmake + - python3 diff --git a/source.sh b/recipe.sh similarity index 96% rename from source.sh rename to recipe.sh index 072f946..ae25fa9 100644 --- a/source.sh +++ b/recipe.sh @@ -1,4 +1,4 @@ -# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package +# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT