1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:57:47 +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:
Beckett Normington 2023-07-07 12:16:10 -04:00 committed by Andrew Kaster
parent 9d6372ff07
commit 73b5e3db6a
2 changed files with 8 additions and 0 deletions

7
Ports/libjodycode/package.sh Executable file
View 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")