diff --git a/info.yml b/info.yml index b5a7679..09e1f72 100644 --- a/info.yml +++ b/info.yml @@ -1,16 +1,26 @@ name: mm-common description: Build infrastructure and utilities shared among the GNOME C++ binding libraries version: 1.0.8 -revision: 1 +revision: 2 url: https://gtkmm.gnome.org/ license: GPL2-or-later maintainers: - enumdev@enumerated.dev architecture: any +output_architecture: any type: source depends: + - bash + - doxygen - graphviz + - gtk-doc + - libsigcpp - perl-xml-parser - python3 make_depends: - meson +downloads: + - url: https://download.gnome.org/sources/mm-common/${BPM_PKG_VERSION%.*}/mm-common-${BPM_PKG_VERSION}.tar.xz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: b189ee636e839d12c00dabefae099fd488ab2358dec24d264761c011950b02a9 diff --git a/recipe.sh b/recipe.sh index 903e334..d71a31e 100644 --- a/recipe.sh +++ b/recipe.sh @@ -2,16 +2,6 @@ # 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 -DOWNLOAD="https://gitlab.gnome.org/GNOME/mm-common/-/archive/${BPM_PKG_VERSION}/mm-common-${BPM_PKG_VERSION}.tar.gz" -FILENAME="${DOWNLOAD##*/}" - -# The prepare function is executed in the root of the temp directory -# This function is used for downloading files and putting them into the correct location -prepare() { - wget "$DOWNLOAD" - tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" -} - # The build function is executed in the source directory # This function is used to compile the source code build() {