mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ports: Add bzip3 port
This commit is contained in:
parent
9c569e8a0f
commit
8ba6cd6ab9
Notes:
sideshowbarker
2024-07-16 23:57:20 +09:00
Author: https://github.com/seal331 Commit: https://github.com/SerenityOS/serenity/commit/8ba6cd6ab9 Pull-request: https://github.com/SerenityOS/serenity/pull/17760 Reviewed-by: https://github.com/EWouters ✅ Reviewed-by: https://github.com/gmta ✅ Reviewed-by: https://github.com/kleinesfilmroellchen ✅ Reviewed-by: https://github.com/timschumi ✅
2 changed files with 11 additions and 0 deletions
|
@ -25,6 +25,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
|
|||
| [`brogue`](brogue/) | BrogueCE | 1.11.1 | https://github.com/tmewett/BrogueCE |
|
||||
| [`byacc`](byacc/) | Berkeley Yacc | 20220128 | https://invisible-island.net/byacc/byacc.html |
|
||||
| [`bzip2`](bzip2/) | bzip2 | 1.0.8 | https://sourceware.org/bzip2/ |
|
||||
| [`bzip3`](bzip3/) | bzip3 | 1.2.2 | https://github.com/kspalaiologos/bzip3 |
|
||||
| [`c-ray`](c-ray/) | C-Ray | 8f30eb9 | https://github.com/vkoskiv/c-ray |
|
||||
| [`ca-certificates`](ca-certificates/) | Mozilla CA certificate store | 2022-04-26 | https://curl.se/docs/caextract.html |
|
||||
| [`carl`](carl/) | Crypto Ancienne Resource Loader | 1.5 | https://github.com/classilla/cryanc |
|
||||
|
|
10
Ports/bzip3/package.sh
Executable file
10
Ports/bzip3/package.sh
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port='bzip3'
|
||||
version='1.2.2'
|
||||
files="https://github.com/kspalaiologos/bzip3/releases/download/${version}/bzip3-${version}.tar.gz bzip3-${version}.tar.gz 19e8d379f48610f945a04a988fd0c330ff6613b3df96405d56bed35a7d216dee"
|
||||
auth_type='sha256'
|
||||
useconfigure='true'
|
||||
installopts=("PREFIX=${SERENITY_INSTALL_ROOT}/usr/local")
|
||||
configopts=(
|
||||
"--disable-arch-native"
|
||||
)
|
Loading…
Reference in a new issue