mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
50758181a3
This commit updates the formatting for all ports to be updated in this PR in one go, to keep those changes centralized.
17 lines
367 B
Bash
Executable file
17 lines
367 B
Bash
Executable file
#!/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#09153824320c65ad529f8f97cd3b7e792c50e9f9018192ea1a76f2e33a196225"
|
|
)
|
|
depends=(
|
|
'libjodycode'
|
|
)
|
|
makeopts+=(
|
|
'UNAME_S=serenity'
|
|
)
|
|
installopts+=(
|
|
'DISABLE_DEDUPE=1'
|
|
)
|
|
|
|
export LDFLAGS='-z noexecstack'
|