1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 23:37:35 +00:00

Ports: Add jdupes port

This commit ports the file deduplication utility `jdupes`.
This commit is contained in:
Beckett Normington 2023-07-07 12:28:19 -04:00 committed by Andrew Kaster
parent 73b5e3db6a
commit a961447dbd
2 changed files with 11 additions and 0 deletions

10
Ports/jdupes/package.sh Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='jdupes'
version='1.26.1'
files="https://github.com/jbruchon/jdupes/archive/refs/tags/v${version}.tar.gz jdupes-${version}.tar.gz 09153824320c65ad529f8f97cd3b7e792c50e9f9018192ea1a76f2e33a196225"
auth_type='sha256'
workdir="jdupes-${version}"
depends=('libjodycode')
makeopts+=("UNAME_S=serenity")
installopts+=('DISABLE_DEDUPE=1')
export LDFLAGS="-z noexecstack"