mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
8ffba7e2cf
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.
14 lines
442 B
Bash
Executable File
14 lines
442 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=imgcat
|
|
version=2.5.0
|
|
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
|
|
|
|
build() {
|
|
run make \
|
|
production=true
|
|
}
|
|
|
|
export CPPFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/ncurses"
|