Add: rp-appset (#6083) (#6094)

This commit is contained in:
Raboneko
2025-08-19 09:24:04 -07:00
committed by GitHub
parent 6a9dd74084
commit 3515ca6e37
3 changed files with 61 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "rp-appset.spec"
}
}
+51
View File
@@ -0,0 +1,51 @@
%global commit 5b4b8f65c3d2795a61e765a01e07af9bfe3d1990
%global commit_date 20250501
%global shortcommit %(c=%{commit}; echo ${c:0:7})
Name: appset
Version: 0~%commit_date.git~%shortcommit
Release: 1%?dist
Summary: Application for customisation of appearance of Raspberry Pi Desktop
License: BSD-3-Clause
URL: https://github.com/raspberrypi-ui/appset
Source0: %url/archive/%commit.tar.gz
Packager: Owen Zimmerman <owen@fyralabs.com>
BuildRequires: meson
BuildRequires: ninja-build
BuildRequires: gtk3-devel
BuildRequires: libxml2-devel
BuildRequires: intltool
BuildRequires: gcc
Requires: libxml2
Requires: gtk3
Provides: pipanel
Provides: rp-appset
%description
%summary.
%prep
%autosetup -n appset-%commit
%build
%meson
%meson_build
%install
%meson_install
%find_lang pipanel
%files -f pipanel.lang
%doc README
%license debian/copyright
%{_bindir}/pipanel
%{_datadir}/applications/pipanel.desktop
%{_datadir}/pipanel/ui/pipanel.ui
%changelog
* Fri Aug 15 2025 Owen Zimmerman <owen@fyralabs.com>
- Package appset
+5
View File
@@ -0,0 +1,5 @@
rpm.global("commit", gh_commit("raspberrypi-ui/appset"));
if rpm.changed() {
rpm.release();
rpm.global("commit_date", date());
}