From 40c2c249846548c42310f3a9eab29efcf69bc4cd Mon Sep 17 00:00:00 2001 From: Panagiotis Vasilopoulos Date: Sat, 17 Apr 2021 16:50:51 +0300 Subject: [PATCH] Ports: Add imgcat port Co-authored-by: Linus Groh --- Ports/AvailablePorts.md | 1 + Ports/imgcat/package.sh | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100755 Ports/imgcat/package.sh diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 207d2f3d64..e0bd9cbdc1 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -38,6 +38,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`gnuplot`](gnuplot/) | Gnuplot | 5.2.8 | http://www.gnuplot.info/ | | [`grep`](grep/) | GNU Grep | 2.5.4 | https://www.gnu.org/software/grep/ | | [`hatari`](hatari/) | Atari ST/STE/TT/Falcon emulator | 2.4.0-devel | https://hatari.tuxfamily.org/ | +| [`imgcat`](imgcat/) | imgcat | 2.5.0 | https://github.com/eddieantonio/imgcat | | [`indent`](indent/) | GNU indent | 2.2.11 | https://www.gnu.org/software/indent/ | | [`jot`](jot/) | jot (OpenBSD) | 6.6 | https://github.com/ibara/libpuffy | | [`jq`](jq/) | jq | 1.6 | https://stedolan.github.io/jq/ | diff --git a/Ports/imgcat/package.sh b/Ports/imgcat/package.sh new file mode 100755 index 0000000000..0221a9690b --- /dev/null +++ b/Ports/imgcat/package.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port=imgcat +version=2.5.0 +useconfigure=false +files="https://github.com/eddieantonio/imgcat/releases/download/v${version}/imgcat-${version}.tar.gz imgcat-v${version}.tar.gz 1b5d45ccafc6fbb7a7ee685d4a5110101418d48b" +auth_type=md5 + +depends="ncurses"