mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
Ports: Add pfetch utility
This is a nice and small utility that prints system info based on POSIX interfaces only.
This commit is contained in:
parent
b17fef5133
commit
4abc2f669a
Notes:
sideshowbarker
2024-07-17 21:49:10 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/4abc2f669a8 Pull-request: https://github.com/SerenityOS/serenity/pull/11403
3 changed files with 17 additions and 0 deletions
|
@ -138,6 +138,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
|
|||
| [`patch`](patch/) | patch (GNU) | 2.7.6 | https://savannah.gnu.org/projects/patch/ |
|
||||
| [`pcre`](pcre/) | Perl-compatible Regular Expressions (PCRE) | 8.45 | https://www.pcre.org/ |
|
||||
| [`pcre2`](pcre2/) | Perl-compatible Regular Expressions (PCRE2) | 10.39 | https://www.pcre.org/ |
|
||||
| [`pfetch`](pfetch/) | pfetch | a906ff8 | https://github.com/dylanaraps/pfetch/ |
|
||||
| [`php`](php/) | PHP | 8.0.10 | https://www.php.net/ |
|
||||
| [`pkgconf`](pkgconf/) | pkgconf | 1.8.0 | https://github.com/pkgconf/pkgconf |
|
||||
| [`SDLPoP`](SDLPoP/) | Prince of Persia game | | https://github.com/NagyD/SDLPoP |
|
||||
|
|
6
Ports/pfetch/package.sh
Executable file
6
Ports/pfetch/package.sh
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=pfetch
|
||||
version=a906ff89680c78cec9785f3ff49ca8b272a0f96b
|
||||
depends=("bash")
|
||||
files="https://github.com/dylanaraps/pfetch/archive/${version}.zip pfetch.zip 33ed7a0cf1826ded7cf8368972274cd261d236bfa1ad9fb378d3cb0a45376f4a"
|
||||
auth_type=sha256
|
10
Ports/pfetch/patches/use-bash.patch
Normal file
10
Ports/pfetch/patches/use-bash.patch
Normal file
|
@ -0,0 +1,10 @@
|
|||
diff --git a/pfetch b/pfetch
|
||||
index d47b878..d8f98ba 100755
|
||||
--- a/pfetch
|
||||
+++ b/pfetch
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/bin/sh
|
||||
+#!/bin/bash
|
||||
#
|
||||
# pfetch - Simple POSIX sh fetch script.
|
||||
|
Loading…
Reference in a new issue