1e5aaa2421
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:Agama:Devel/agama-cli?expand=0&rev=6
65 lines
2.1 KiB
RPMSpec
65 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package agama-cli
|
|
#
|
|
# Copyright (c) 2023 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: agama-cli
|
|
# This will be set by osc services, that will run after this.
|
|
Version: 2.1+0
|
|
Release: 0
|
|
Summary: Agama command line interface
|
|
# If you know the license, put it's SPDX string here.
|
|
# Alternately, you can use cargo lock2rpmprovides to help generate this.
|
|
License: GPL-2.0-only
|
|
URL: https://github.com/yast/agama-cli
|
|
Source0: agama.tar
|
|
Source1: vendor.tar.zst
|
|
# Generated by the cargo_vendor OBS service
|
|
Source2: cargo_config
|
|
BuildRequires: cargo-packaging
|
|
BuildRequires: pkgconfig(openssl)
|
|
Requires: jsonnet
|
|
Requires: lshw
|
|
|
|
%description
|
|
Command line program to interact with the agama service.
|
|
|
|
%prep
|
|
%autosetup -a1 -n agama
|
|
mkdir .cargo
|
|
cp %{SOURCE2} .cargo/config
|
|
# Remove exec bits to prevent an issue in fedora shebang checking. Uncomment only if required.
|
|
# find vendor -type f -name \*.rs -exec chmod -x '{}' \;
|
|
|
|
%build
|
|
%{cargo_build}
|
|
|
|
%install
|
|
install -D -d -m 0755 %{buildroot}%{_bindir}
|
|
install -m 0755 %{_builddir}/agama/target/release/agama %{buildroot}%{_bindir}/agama
|
|
install -D -d -m 0755 %{buildroot}%{_datadir}/agama-cli
|
|
install -m 0644 %{_builddir}/agama/agama-lib/share/profile.schema.json %{buildroot}%{_datadir}/agama-cli
|
|
|
|
%check
|
|
%{cargo_test}
|
|
|
|
%files
|
|
%{_bindir}/agama
|
|
%dir %{_datadir}/agama-cli
|
|
%{_datadir}/agama-cli/profile.schema.json
|
|
|
|
%changelog
|