We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add proper install scripts for CMake. Configuring & building with CMake instead of make is necessary:
cmake -S mpeghdec -B build cmake --build build
but the installation seems not to be implemented: DESTDIR="$pkgdir" cmake --install so I had to resort to a classic
DESTDIR="$pkgdir" cmake --install
[..] install -Dm 755 mpeghDecoder -t "/usr/bin"
The text was updated successfully, but these errors were encountered:
@waarmond thank you for your request! We'll consider to add the mentioned install scripts in one of our next releases.
Sorry, something went wrong.
No branches or pull requests
Please add proper install scripts for CMake. Configuring & building with CMake instead of make is necessary:
but the installation seems not to be implemented:
DESTDIR="$pkgdir" cmake --install
so I had to resort to a classic
The text was updated successfully, but these errors were encountered: