mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ports: Add ObjFW :^)
This commit is contained in:
parent
6a4cdc3ef2
commit
a608458ee6
Notes:
sideshowbarker
2024-07-17 18:49:10 +09:00
Author: https://github.com/bugaevc Commit: https://github.com/SerenityOS/serenity/commit/a608458ee6 Pull-request: https://github.com/SerenityOS/serenity/pull/20159 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/BertalanD
2 changed files with 17 additions and 0 deletions
|
@ -208,6 +208,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
|
|||
| [`npth`](npth/) | New GNU Portable Threads Library | 1.6 | https://gnupg.org/software/npth/index.html |
|
||||
| [`ntbtls`](ntbtls/) | The Not Too Bad TLS Library | 0.2.0 | https://gnupg.org/software/ntbtls/index.html |
|
||||
| [`nyancat`](nyancat/) | Nyancat | | https://github.com/klange/nyancat |
|
||||
| [`ObjFW`](ObjFW/) | ObjFW | master | https://objfw.nil.im/ |
|
||||
| [`oksh`](oksh/) | oksh | 7.1 | https://github.com/ibara/oksh |
|
||||
| [`OpenJDK`](OpenJDK/) | OpenJDK | 17.0.6 | https://openjdk.java.net/ |
|
||||
| [`openrct2`](openrct2/) | OpenRCT2 | 0.4.4 | https://openrct2.org/ |
|
||||
|
|
16
Ports/ObjFW/package.sh
Executable file
16
Ports/ObjFW/package.sh
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
|
||||
port="ObjFW"
|
||||
version="master"
|
||||
commit="2903ecda7767a9563b6d3c74581b3920d32e6576"
|
||||
useconfigure="true"
|
||||
files="https://github.com/ObjFW/ObjFW/archive/${commit}.tar.gz ObjFW-${commit}.tar.gz ef5e3158e898415a9458f2c9a620b47f111b9a2af0bc8c48bcde4e13ae2b7727"
|
||||
workdir="ObjFW-${commit}"
|
||||
use_fresh_config_sub='true'
|
||||
config_sub_paths=("build-aux/config.sub")
|
||||
depends=("openssl")
|
||||
|
||||
# Only required for non-releases.
|
||||
pre_configure() {
|
||||
run ./autogen.sh
|
||||
}
|
Loading…
Reference in a new issue