commit 9c081c1b758898260b17a638eaf7802a4db29865 Author: EnumDev Date: Mon Sep 8 16:44:32 2025 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e58e5f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Exclude bpm archives +*.bpm \ No newline at end of file diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..aa6602f --- /dev/null +++ b/check-version.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Gitlab repository +REPO="xfce/libxfce4windowing" + +# Replace slash with URL encoded representation +REPO=$(echo "$REPO" | sed 's|/|%2F|g') + +# Get tag name using Gitlab Rest API +TAG_NAME=$(curl -s -L https://gitlab.xfce.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[].name' | cut -d'-' -f2 | grep -v 'pre' | sort -V | tail -n1) + +echo "$TAG_NAME" diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..a3b786d --- /dev/null +++ b/pkg.info @@ -0,0 +1,9 @@ +name: libxfce4windowing +description: Windowing concept abstraction library for X11 and Wayland +version: 4.20.4 +url: https://docs.xfce.org/xfce/libxfce4windowing/start +license: LGPL2.1-or-later +architecture: any +depends: ["gdk-pixbuf","glib","gtk3","libdisplay-info","libwnck","libx11","wayland"] +make_depends: ["git","gobject-introspection","meson","vala","wayland-protocols","wlroots"] +type: source diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..bf7a80c --- /dev/null +++ b/source.sh @@ -0,0 +1,28 @@ +# This is the source.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 + +DOWNLOAD="https://archive.xfce.org/src/xfce/libxfce4windowing/4.20/libxfce4windowing-4.20.4.tar.bz2" +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() { + ./configure --prefix=/usr --sysconfdir=/etc --enable-x11 --enable-wayland --disable-debug --with-vendor-info="Tide Linux" --enable-maintainer-mode + make +} + +# The package function is executed in the source directory +# This function is used to move the compiled files into the output directory +package() { + make DESTDIR="$BPM_OUTPUT" install + + install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/libxfce4ui/COPYING +}