33 lines
787 B
RPMSpec
33 lines
787 B
RPMSpec
Name: prem2resolve
|
|
Version: 0.1.0
|
|
Release: 1%{?dist}
|
|
Summary: Convert Premiere Pro XML exports for DaVinci Resolve on Linux
|
|
License: 0BSD
|
|
BuildArch: noarch
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
BuildRequires: python3
|
|
Requires: python3
|
|
Requires: ffmpeg
|
|
|
|
%description
|
|
Command-line tool that updates Adobe Premiere Pro XML exports for DaVinci Resolve
|
|
on Linux, optionally re-encoding MP4 media into Resolve-friendly MOV codecs.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
# No build step required for this Python script.
|
|
|
|
%install
|
|
install -D -m 0755 premiere_to_resolve.py %{buildroot}%{_bindir}/prem2resolve
|
|
|
|
%files
|
|
%{_bindir}/prem2resolve
|
|
|
|
%changelog
|
|
* Thu Feb 19 2026 Danilo Reyes <danilo.reyes.251@proton.me> - 0.1.0-1
|
|
- Initial RPM packaging
|