mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-02 04:20:28 +00:00
Ports: Add libjodycode port
This commit ports `libjodycode` to Serenity, which is a helper library containing shared code for utilities written by Jody Bruchon. This library was required for porting `jdupes`.
This commit is contained in:
parent
9d6372ff07
commit
73b5e3db6a
Notes:
sideshowbarker
2024-07-17 14:36:19 +09:00
Author: https://github.com/tarob0ba Commit: https://github.com/SerenityOS/serenity/commit/73b5e3db6a Pull-request: https://github.com/SerenityOS/serenity/pull/19868 Reviewed-by: https://github.com/ADKaster ✅
2 changed files with 8 additions and 0 deletions
|
@ -133,6 +133,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
|
|||
| [`libgpg-error`](libgpg-error/) | libgpg-error | 1.45 | https://gnupg.org/software/libgpg-error/index.html |
|
||||
| [`libiconv`](libiconv/) | GNU libiconv | 1.17 | https://www.gnu.org/software/libiconv/ |
|
||||
| [`libicu`](libicu/) | ICU | 69.1 | http://site.icu-project.org/ |
|
||||
| [`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 |
|
||||
| [`libmad`](libmad/) | libmad | 0.15.1b | https://www.underbit.com/products/mad/ |
|
||||
|
|
7
Ports/libjodycode/package.sh
Executable file
7
Ports/libjodycode/package.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port='libjodycode'
|
||||
version='3.1'
|
||||
files="https://github.com/jbruchon/libjodycode/archive/refs/tags/v${version}.tar.gz libjodycode-${version}.tar.gz c72974eb1d38873e06ea84b3d78990f87192f0113da5bd13fcac6bbc6a6e2184"
|
||||
auth_type='sha256'
|
||||
workdir="libjodycode-${version}"
|
||||
makeopts=("UNAME_S=serenity UNAME_M=${SERENITY_ARCH} CROSS_DETECT=cross")
|
Loading…
Reference in a new issue