1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 02:57:34 +00:00

Ports: Add QOI converter and QOI benchmark utility

This commit is contained in:
Liav A 2022-06-26 22:36:57 +03:00 committed by Linus Groh
parent 5fe4feee33
commit 6256bdb075
4 changed files with 49 additions and 0 deletions

11
Ports/qoi/package.sh Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='qoi'
version='edb8d7b1140be3168cc99ed87edc605c7c1cf31f'
files="https://github.com/phoboslab/qoi/archive/${version}.zip qoi-${version}.zip 3d3df95fb0b59aca2113ce45396f887eaba1be914cd54b56804efc241f93f203"
auth_type='sha256'
depends=('libpng' 'stb')
install() {
run cp qoibench "${SERENITY_INSTALL_ROOT}/bin"
run cp qoiconv "${SERENITY_INSTALL_ROOT}/bin"
}