commit d28aca282ea1d328cf366f61e704d612d3eec7b4 Author: EnumDev Date: Sun Oct 12 12:27:10 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..cd89e29 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +# Ignore this package +echo "ignore" diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..8b130b7 --- /dev/null +++ b/pkg.info @@ -0,0 +1,31 @@ +name: lxqt +description: A lightweight Qt Desktop Environment +version: "2.2" +url: https://lxqt-project.org/ +architecture: any +type: source +depends: + - lximage-qt + - lxqt-about + - lxqt-admin + - lxqt-archiver + - lxqt-config + - lxqt-globalkeys + - lxqt-notificationd + - lxqt-openssh-askpass + - lxqt-panel + - lxqt-policykit + - lxqt-powermanagement + - lxqt-qtplugin + - lxqt-runner + - lxqt-session + - lxqt-sudo + - lxqt-themes + - obconf-qt + - openbox + - pavucontrol-qt + - pcmanfm-qt + - qps + - qterminal + - screengrab + - xdg-desktop-portal-lxqt diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..e39261b --- /dev/null +++ b/source.sh @@ -0,0 +1,9 @@ +# 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 + +# The package function is executed in the source directory +# This function is used to move the compiled files into the output directory +package() { + echo "The lxqt package does not include any files by itself as its purpose is to serve as a quick way to install other xfce related packages to the system" +}