mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ports: Add liblzf
This small data compression library also provides userspace utilities to compress and decompress data.
This commit is contained in:
parent
bd3d185b3b
commit
cd3c06dcef
Notes:
sideshowbarker
2024-07-16 17:05:37 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/cd3c06dcef Pull-request: https://github.com/SerenityOS/serenity/pull/20774 Reviewed-by: https://github.com/timschumi ✅
2 changed files with 12 additions and 0 deletions
|
@ -146,6 +146,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
|
|||
| [`libjodycode`](libjodycode/) | libjodycode | 3.1 | https://github.com/jbruchon/libjodycode |
|
||||
| [`libjpeg`](libjpeg/) | libjpeg | 9e | https://ijg.org/ |
|
||||
| [`libksba`](libksba/) | libksba | 1.5.1 | https://gnupg.org/software/libksba/index.html |
|
||||
| [`liblzf`](liblzf/) | LibLZF is a very small data compression library | 3.6 | http://software.schmorp.de/pkg/liblzf.html |
|
||||
| [`libmad`](libmad/) | libmad | 0.15.1b | https://www.underbit.com/products/mad/ |
|
||||
| [`libmikmod`](libmikmod/) | libmikmod | 3.3.11.1 | http://mikmod.sourceforge.net/ |
|
||||
| [`libmodplug`](libmodplug/) | libmodplug | 0.8.9.0 | http://modplug-xmms.sourceforge.net/ |
|
||||
|
|
11
Ports/liblzf/package.sh
Executable file
11
Ports/liblzf/package.sh
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port='liblzf'
|
||||
version='3.6'
|
||||
useconfigure='true'
|
||||
files=(
|
||||
"http://dist.schmorp.de/liblzf/liblzf-${version}.tar.gz 9c5de01f7b9ccae40c3f619d26a7abec9986c06c36d260c179cedd04b89fb46a"
|
||||
)
|
||||
configopts=(
|
||||
"--prefix=${SERENITY_INSTALL_ROOT}/usr/local"
|
||||
"--exec-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
|
||||
)
|
Loading…
Reference in a new issue