fixed
All checks were successful
build-rpm / rpm (push) Successful in 1m35s

This commit is contained in:
Danilo Reyes
2026-02-21 13:38:27 -06:00
parent 0b65727f85
commit cd1d3eb698
2 changed files with 6 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ Source0: %{name}-%{version}.tar.gz
BuildRequires: python3
Requires: python3
Requires: ffmpeg
Requires: (ffmpeg or ffmpeg-free)
%description
Command-line tool that updates Adobe Premiere Pro XML exports for DaVinci Resolve

View File

@@ -32,6 +32,10 @@ git -C "$ROOT_DIR" archive --format=tar --prefix="${NAME}-${VERSION}/" HEAD | gz
cp "$SPEC_FILE" "$TOPDIR/SPECS/"
cp "$TARBALL" "$TOPDIR/SOURCES/"
rpmbuild --define "_topdir $TOPDIR" -ba "$TOPDIR/SPECS/$(basename "$SPEC_FILE")"
rpmbuild \
--define "_topdir $TOPDIR" \
--define "_prefix /usr" \
--define "_bindir /usr/bin" \
-ba "$TOPDIR/SPECS/$(basename "$SPEC_FILE")"
echo "Built RPM(s) in: $TOPDIR/RPMS"