Initial commit

This commit is contained in:
2025-09-08 16:44:32 +03:00
commit 9c081c1b75
4 changed files with 51 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
# Exclude bpm archives
*.bpm
+12
View File
@@ -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"
+9
View File
@@ -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
+28
View File
@@ -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
}