From a4df3f3fa4264cf3b8428a0a2ac6b2993575c624 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 1 Feb 2026 16:51:07 +0200 Subject: [PATCH] Rebuild without libuuid.la --- pkg.info | 18 ++++++++++++++++-- source.sh | 9 ++------- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/pkg.info b/pkg.info index 3278c96..a5ab7fd 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,23 @@ name: garcon description: Implementation of the freedesktop.org compliant menu specification version: 4.20.0 +revision: 2 url: https://docs.xfce.org/xfce/garcon/start license: LGPL2-only +maintainers: + - enumdev@enumerated.dev architecture: any -depends: ["libxfce4ui"] -make_depends: ["glib","gobject-introspection","gtk-doc","python3","xfce4-dev-tools"] type: source +depends: + - libxfce4ui +make_depends: + - glib + - gobject-introspection + - gtk-doc + - python3 + - xfce4-dev-tools +downloads: + - url: https://gitlab.xfce.org/xfce/garcon/-/archive/garcon-${BPM_PKG_VERSION}/garcon-garcon-${BPM_PKG_VERSION}.tar.gz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: fb256b1249680fc977d3778ba78f63bfab4abc9d8333f52772844811788717c0 diff --git a/source.sh b/source.sh index 42e90f3..687ea13 100644 --- a/source.sh +++ b/source.sh @@ -2,15 +2,9 @@ # 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.xfce.org/xfce/garcon/-/archive/garcon-${BPM_PKG_VERSION}/garcon-garcon-${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 +# This function is used for putting downloaded files to the correct location or applying patches prepare() { - wget "$DOWNLOAD" - tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" - cd "$BPM_SOURCE" NOCONFIGURE=1 ./autogen.sh } @@ -27,5 +21,6 @@ build() { package() { make DESTDIR="$BPM_OUTPUT" install + # Install package license install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/garcon/COPYING }