Skip to content

Commit

Permalink
qsv: Adapt to renamed portable binary
Browse files Browse the repository at this point in the history
  • Loading branch information
iainelder committed Aug 14, 2024
1 parent a5cd6f4 commit 963d342
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions programs/qsv/install.bash
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,12 @@ download_filename=$(
--write-out '%{filename_effective}'
)

unzip "$download_filename" qsv
# The musl variant is now called "qsvp". The "p" means "portable".
# I still want my installed version to be called "qsv".
# https://github.com/jqnatividad/qsv/commit/70bd244060946efe0cfd72cc663fbe5304cd4115

sudo cp qsv /usr/local/bin
unzip "$download_filename" qsvp

sudo cp qsvp /usr/local/bin/qsv

qsv --version

0 comments on commit 963d342

Please sign in to comment.