From 7d5989e0885ec265d6529b2232ae7d82c882e5aa Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 1 Feb 2026 16:50:15 +0200 Subject: [PATCH] Rebuild without libuuid.la --- pkg.info | 24 ++++++++++++++++++++++-- source.sh | 9 ++------- 2 files changed, 24 insertions(+), 9 deletions(-) diff --git a/pkg.info b/pkg.info index 4a31f93..252ddbe 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,29 @@ name: libxfce4ui description: Library is used to share commonly used Xfce widgets among the Xfce applications version: 4.20.2 +revision: 2 url: https://docs.xfce.org/xfce/libxfce4ui/start license: GPL2-only +maintainers: + - enumdev@enumerated.dev architecture: any -depends: ["gtk3","hicolor-icon-theme","libsm","libxfce4util","startup-notification","xfconf"] -make_depends: ["glib","gobject-introspection","gtk-doc","intltool","vala","xfce4-dev-tools"] type: source +depends: + - gtk3 + - hicolor-icon-theme + - libsm + - libxfce4util + - startup-notification + - xfconf +make_depends: + - glib + - gobject-introspection + - gtk-doc + - intltool + - vala + - xfce4-dev-tools +downloads: + - url: https://gitlab.xfce.org/xfce/libxfce4ui/-/archive/libxfce4ui-${BPM_PKG_VERSION}/libxfce4ui-libxfce4ui-${BPM_PKG_VERSION}.tar.gz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 13110bd74994a2bf4379455785c479ee3cf43f6e61a4a7832f45625c8c0eab5d diff --git a/source.sh b/source.sh index a610678..3a7beb8 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/libxfce4ui/-/archive/libxfce4ui-${BPM_PKG_VERSION}/libxfce4ui-libxfce4ui-${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/libxfce4ui/COPYING }