Ports: Add hexedit port

This commit is contained in:
Seal Sealy 2023-03-08 14:28:20 +03:00 committed by Sam Atkins
parent 8faed20603
commit 0f5cd3ea68
Notes: sideshowbarker 2024-07-17 08:43:11 +09:00
2 changed files with 12 additions and 0 deletions

View File

@ -100,6 +100,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
| [`halflife`](halflife/) | Half-Life | 2022.12.26 | https://github.com/FWGS/hlsdk-portable |
| [`harfbuzz`](harfbuzz/) | HarfBuzz | 4.3.0 | https://github.com/harfbuzz/harfbuzz |
| [`hatari`](hatari/) | Atari ST/STE/TT/Falcon emulator | 2.4.0-devel | https://hatari.tuxfamily.org/ |
| [`hexedit`](hexedit/) | A console-based hex editor | 1.6 | https://github.com/pixel/hexedit |
| [`imagemagick`](imagemagick/) | ImageMagick | 7.1.0-29 | https://imagemagick.org |
| [`imgcat`](imgcat/) | imgcat | 2.5.1 | https://github.com/eddieantonio/imgcat |
| [`indent`](indent/) | GNU indent | 2.2.11 | https://www.gnu.org/software/indent/ |

11
Ports/hexedit/package.sh Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='hexedit'
version='1.6'
files="https://github.com/pixel/hexedit/archive/refs/tags/${version}.tar.gz hexedit-${version}.tar.gz 598906131934f88003a6a937fab10542686ce5f661134bc336053e978c4baae3"
auth_type='sha256'
depends=("ncurses")
useconfigure='true'
pre_patch() {
run ./autogen.sh
}