mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
1986693edc
The author unpublished everything on github and moved to codeberg. The different hashes come from the new platform packaging the tarfiles differently than before.
18 lines
376 B
Bash
Executable file
18 lines
376 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='jdupes'
|
|
version='1.27.3'
|
|
files=(
|
|
"https://codeberg.org/jbruchon/jdupes/archive/v${version}.tar.gz#1c75ed30dc95b3b5024019ab2ba3f78a14835c11d5b71249aa94374fde650c16"
|
|
)
|
|
workdir='jdupes'
|
|
depends=(
|
|
'libjodycode'
|
|
)
|
|
makeopts+=(
|
|
'UNAME_S=serenity'
|
|
)
|
|
installopts+=(
|
|
'DISABLE_DEDUPE=1'
|
|
)
|
|
|
|
export LDFLAGS='-z noexecstack'
|