mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Ports: Add hexedit port
This commit is contained in:
parent
8faed20603
commit
0f5cd3ea68
Notes:
sideshowbarker
2024-07-17 08:43:11 +09:00
Author: https://github.com/seal331 Commit: https://github.com/SerenityOS/serenity/commit/0f5cd3ea68 Pull-request: https://github.com/SerenityOS/serenity/pull/17767
2 changed files with 12 additions and 0 deletions
|
@ -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
11
Ports/hexedit/package.sh
Executable 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
|
||||
}
|
Loading…
Reference in a new issue