diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-06-30 11:12:24 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-07-01 14:32:03 +0200 |
commit | 0d2613ebeb771a510b730ed3007ffcaa22d2ecba (patch) | |
tree | 341af218295aa13308f3334e50ae55febf391719 | |
parent | 8b9f5b0286121ac792fd910b6799ea5bda1899c6 (diff) | |
download | serenity-0d2613ebeb771a510b730ed3007ffcaa22d2ecba.zip |
Ports: Add a port of `genext2fs`
-rw-r--r-- | Ports/AvailablePorts.md | 1 | ||||
-rwxr-xr-x | Ports/genext2fs/package.sh | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index e2e9adc69d..a0302bd1ab 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -66,6 +66,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`gcc`](gcc/) | GNU Compiler Collection | 12.1.0 | https://gcc.gnu.org/ | | [`gdb`](gdb/) | GNU Project Debugger | 11.2 | https://sourceware.org/gdb | | [`genemu`](genemu/) | Genesis / MegaDrive Emulator | e39f690 | https://github.com/rasky/genemu | +| [`genext2fs`](genext2fs/) | genext2fs | 1.5.0 | https://github.com/bestouff/genext2fs | | [`gettext`](gettext/) | GNU gettext | 0.21 | https://www.gnu.org/software/gettext/ | | [`git`](git/) | Git | 2.36.1 | https://git-scm.com/ | | [`glib`](glib/) | GLib | 2.73.0 | https://wiki.gnome.org/Projects/GLib | diff --git a/Ports/genext2fs/package.sh b/Ports/genext2fs/package.sh new file mode 100755 index 0000000000..64b10a8805 --- /dev/null +++ b/Ports/genext2fs/package.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port='genext2fs' +version='1.5.0' +files="https://github.com/bestouff/genext2fs/archive/v${version}.tar.gz genext2fs-${version}.tar.xz d3861e4fe89131bd21fbd25cf0b683b727b5c030c4c336fadcd738ada830aab0" +auth_type='sha256' +useconfigure='true' + +pre_patch() { + run ./autogen.sh +} |