12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- Name: lyrebird
- Summary: Simple and powerful voice changer for Linux, written in GTK.
- URL: https://github.com/lyrebird-voice-changer/%{name}
- Version: 1.1.0
- Release: 4%{dist}
- License: MIT
- Source0: %{URL}/archive/v%{version}.tar.gz
- BuildArch: noarch
- BuildRequires: gettext
- Requires: python3 >= 3.7.0
- Requires: python3-toml
- Requires: python3-gobject
- Requires: pulseaudio
- Requires: sox
- %description
- Simple and powerful voice changer for Linux, written in GTK.
- %prep
- %setup -q -n %{name}-%{version}
- %install
- install -dm 0755 %{buildroot}/%{_bindir}
- install -m 0755 %{name} %{buildroot}/%{_bindir}/
- install -dm 0755 %{buildroot}/%{_datadir}/%{name}
- cp -rf app app.py icon.png %{buildroot}/%{_datadir}/%{name}/
- install -dm 0755 %{buildroot}/%{_datadir}/applications
- BIN_PATH=%{_bindir} SHARE_PATH=%{_datadir}/%{name} envsubst < %{name}.desktop > %{buildroot}/%{_datadir}/applications/%{name}.desktop
- %files
- %defattr(-,root,root,-)
- %{_bindir}/%{name}
- %{_datadir}/%{name}
- %{_datadir}/applications/%{name}.desktop
- %license LICENSE
- %doc README.md CHANGELOG.md
- %changelog
- * Fri Jan 28 2022 sT331h0rs3 <sT331h0rs3@gmail.com> - 1.1.0-4
- - Change the GitHub URL and set noarch.
- * Sun Apr 04 2021 sT331h0rs3 <sT331h0rs3@gmail.com> - 1.1.0-3
- - Initial RPM packaging for Fedora is done.
|