commit 58aa0b6ccd292fb029b63c72a841477e2f76e998 Author: EnumDev Date: Sat May 23 11:14:03 2026 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d96df7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Ignore BPM archives and signatures +*.bpm +*.bpm.sig 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..858eb67 --- /dev/null +++ b/pkg.info @@ -0,0 +1,26 @@ +name: mate +description: The MATE Desktop Environment +version: "1.28" +revision: 1 +url: https://mate-desktop.org/ +maintainers: + - enumdev@enumerated.dev +architecture: any +output_architecture: any +type: source +runtime_depends: + - caja + - marco + - mate-backgrounds + - mate-control-center + - mate-desktop + - mate-icon-theme + - mate-menus + - mate-notification-daemon + - mate-panel + - mate-polkit + - mate-power-manager + - mate-session-manager + - mate-settings-daemon + - mate-themes + - mate-user-guide diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..fcb8bda --- /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 mate package does not include any files by itself as its purpose is to serve as a quick way to install other mate related packages to the system" +}