File btrfs-assistant.spec of Package btrfs-assistant
#
# spec file for package btrfs-assistant
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: btrfs-assistant
Version: 2.2
Release: 0
Summary: Btrfs Assistant
# FIXME: Select a correct license from https://github.com/openSUSE/spec-cleaner#spdx-licenses
License: GPL-3.0+
URL: https://gitlab.com/btrfs-assistant/btrfs-assistant
Source: %{url}/-/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: cmake
%if 0%{?suse_version} < 1600
BuildRequires: gcc13
BuildRequires: gcc13-c++
%else
BuildRequires: gcc
BuildRequires: gcc-c++
%endif
BuildRequires: libbtrfs-devel
BuildRequires: libbtrfsutil-devel
BuildRequires: cmake(Qt6Core)
BuildRequires: cmake(Qt6Widgets)
BuildRequires: cmake(Qt6LinguistTools)
%description
Btrfs Assistant is a GUI management tool to make managing a Btrfs filesystem easier. The primary features it offers are:
An easy to read overview of Btrfs metadata
A simple view of subvolumes with or without Snapper/Timeshift snapshots
Run and monitor scrub and balance operations
A pushbutton method for removing subvolumes
A management front-end for Snapper with enhanced restore functionality
View, create and delete snapshots
Restore snapshots in a variety of situations
When the filesystem is mounted in a different distro
When booted off a snapshot
From a live ISO
View, create, edit, remove Snapper configurations
Browse snapshots and restore individual files
Browse diffs of a single file across snapshot versions
Manage Snapper systemd units
A front-end for Btrfs Maintenance
Manage systemd units
Easily manage configuration for defrag, balance and srub settings
%prep
%autosetup
sed -i -e '1d;2i#!/usr/bin/bash' src/btrfs-assistant
sed -i -e '1d;2i#!/usr/bin/bash' src/btrfs-assistant-launcher
%build
%if 0%{?suse_version} < 1600
export CC=gcc-13
export CXX=g++-13
%endif
%cmake \
-DCMAKE_BUILD_TYPE=Release
%cmake_build
%install
%cmake_install
%files
%license LICENSE
%doc README.md changelog
%{_bindir}/btrfs-assistant*
%config(noreplace) %{_sysconfdir}/btrfs-assistant.conf
%{_datadir}/applications/btrfs-assistant.desktop
%{_datadir}/metainfo/btrfs-assistant.metainfo.xml
%dir %{_datadir}/polkit-1/
%dir %{_datadir}/polkit-1/actions/
%{_datadir}/polkit-1/actions/org.btrfs-assistant.pkexec.policy
%dir %{_datadir}/icons/hicolor
%dir %{_datadir}/icons/hicolor/scalable
%dir %{_datadir}/icons/hicolor/scalable/apps
%{_datadir}/icons/*/*/*/*.svg
%changelog