diff options
author | Seal Sealy <butilkama@gmail.com> | 2023-03-08 14:28:20 +0300 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2023-03-09 09:14:58 +0000 |
commit | 0f5cd3ea685a949b9457454d7fd4f5374c96ec74 (patch) | |
tree | cfd212729636274bfd483bcb976fa615481b239f /Ports/hexedit | |
parent | 8faed20603f4b50fdc87ff9691fd20770e281cf5 (diff) | |
download | serenity-0f5cd3ea685a949b9457454d7fd4f5374c96ec74.zip |
Ports: Add hexedit port
Diffstat (limited to 'Ports/hexedit')
-rwxr-xr-x | Ports/hexedit/package.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Ports/hexedit/package.sh b/Ports/hexedit/package.sh new file mode 100755 index 0000000000..eab11d8f9f --- /dev/null +++ b/Ports/hexedit/package.sh @@ -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 +} |