diff options
author | Mike Swanson <mikeonthecomputer@gmail.com> | 2023-05-11 14:40:39 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-05-12 05:36:47 +0200 |
commit | eb76329ad8e47de73c3696881071ded6857d859b (patch) | |
tree | a69229123489382126ffa217caf168d95e0700a8 | |
parent | 5a1c0c6836c3c6462145a6943b8df9bf169ebccc (diff) | |
download | serenity-eb76329ad8e47de73c3696881071ded6857d859b.zip |
Ports: Add deutex 5.2.2
-rw-r--r-- | Ports/AvailablePorts.md | 1 | ||||
-rwxr-xr-x | Ports/deutex/package.sh | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 432fd9a78c..aa3d9d0ea2 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -42,6 +42,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`cpio`](cpio/) | GNU cpio archive utility | 2.13 | https://www.gnu.org/software/cpio/ | | [`curl`](curl/) | curl | 8.0.1 | https://curl.se/ | | [`dash`](dash/) | DASH | 0.5.10.2 | http://gondor.apana.org.au/~herbert/dash | +| [`deutex`](deutex/) | DeuTex | 5.2.2 | https://github.com/Doom-Utils/deutex | | [`dialog`](dialog/) | Dialog | 1.3-20220526 | https://invisible-island.net/dialog/ | | [`diffutils`](diffutils/) | GNU Diffutils | 3.8 | https://www.gnu.org/software/diffutils/ | | [`dmidecode`](dmidecode/) | dmidecode | 3.5 | https://github.com/mirror/dmidecode | diff --git a/Ports/deutex/package.sh b/Ports/deutex/package.sh new file mode 100755 index 0000000000..d353ce9f76 --- /dev/null +++ b/Ports/deutex/package.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port='deutex' +version='5.2.2' +useconfigure='true' +files="https://github.com/Doom-Utils/deutex/releases/download/v${version}/deutex-${version}.tar.zst deutex-${version}.tar.zst 10ed0e7a533ec97cb6d03548d4258fbec88852a45b5ea4cf5434376ad4174b5f" +auth_type='sha256' +depends=( + 'libpng' +) |