File intermodal.spec of Package intermodal
#
# spec file for package intermodal
#
# Copyright (c) 2024 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: intermodal
Version: 0.1.14
License: CC0
Release: 0
Summary: User-friendly and featureful CLI BitTorrent metainfo utility, written in Rust
URL: https://github.com/casey/intermodal
Source0: https://github.com/casey/intermodal/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Source1: vendor.tar.zst
BuildRequires: cargo
BuildRequires: cargo-packaging
BuildRequires: help2man
BuildRequires: zstd
BuildRequires: pkgconfig(libgit2)
BuildRequires: pkgconfig(libssh)
%description
Intermodal is a user-friendly and featureful command-line BitTorrent metainfo
utility. The binary is called imdl and runs on Linux, Windows, and macOS.
At the moment, creation, viewing, and verification of .torrent files is
supported.
%package fish-completion
Summary: Fish Completion for %{name}
Group: System/Shells
Supplements: (%{name} and fish)
Requires: fish
BuildArch: noarch
%description fish-completion
Fish command-line completion support for %{name}.
%package zsh-completion
Summary: Zsh Completion for %{name}
Group: System/Shells
Supplements: (%{name} and zsh)
Requires: zsh
BuildArch: noarch
%description zsh-completion
Zsh command-line completion support for %{name}.
%package bash-completion
Summary: Bash Completion for %{name}
Group: System/Shells
Supplements: (%{name} and bash-completion)
Requires: bash-completion
BuildArch: noarch
%description bash-completion
Bash command-line completion support for %{name}.
%prep
%autosetup -a1 -p1
%build
%{cargo_build} --all-features
cargo run --package gen -- --bin ./target/release/imdl completion-scripts
cargo run --package gen -- --bin ./target/release/imdl man
cargo run --package gen -- --bin ./target/release/imdl book
%install
install -Dm755 "%{_builddir}/%{name}-%{version}/target/release/imdl" "%{buildroot}%{_bindir}/imdl"
install -Dm644 "%{_builddir}/%{name}-%{version}/target/gen/completions/_imdl" "%{buildroot}%{_datadir}/zsh/site-functions/_imdl"
install -Dm644 "%{_builddir}/%{name}-%{version}/target/gen/completions/imdl.bash" "%{buildroot}%{_datadir}/bash-completion/completions/imdl"
install -Dm644 "%{_builddir}/%{name}-%{version}/target/gen/completions/imdl.fish" "%{buildroot}%{_datadir}/fish/vendor_completions.d/imdl.fish"
%check
%files
%{_bindir}/imdl
%license LICENSE
%doc *.md
%files bash-completion
%dir %{_datadir}/bash-completion
%dir %{_datadir}/bash-completion/completions
%{_datadir}/bash-completion/completions/imdl
%files fish-completion
%dir %{_datadir}/fish
%dir %{_datadir}/fish/vendor_completions.d
%{_datadir}/fish/vendor_completions.d/imdl.fish
%files zsh-completion
%dir %{_datadir}/zsh
%dir %{_datadir}/zsh/site-functions
%{_datadir}/zsh/site-functions/_imdl
%changelog