diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-03-16 13:07:41 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-03-16 14:10:59 +0000 |
commit | 8ffba7e2cf96a1e59960b050245e9cdfe04c5758 (patch) | |
tree | 143defd0412847be121114a3f4561be4446ba1b8 /Ports | |
parent | aad776048e9a6ab18fe0aefed083dfd6212d65da (diff) | |
download | serenity-8ffba7e2cf96a1e59960b050245e9cdfe04c5758.zip |
Ports: Add libpng and libjpeg dependencies to imgcat
Those don't seem to be strictly required, but we already have those
ports, might as well add a few more formats to the mix.
Diffstat (limited to 'Ports')
-rwxr-xr-x | Ports/imgcat/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/imgcat/package.sh b/Ports/imgcat/package.sh index fe81879d48..927301c9a4 100755 --- a/Ports/imgcat/package.sh +++ b/Ports/imgcat/package.sh @@ -1,7 +1,7 @@ #!/usr/bin/env -S bash ../.port_include.sh port=imgcat version=2.5.0 -depends=("ncurses") +depends=("ncurses" "libpng" "libjpeg") files="https://github.com/eddieantonio/imgcat/releases/download/v${version}/imgcat-${version}.tar.gz imgcat-v${version}.tar.gz 8f18e10464ed1426b29a5b11aee766a43db92be17ba0a17fd127dd9cf9fb544b" auth_type=sha256 |