2021-04-14 02:31:52 +00:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port=npth
|
|
|
|
version=1.6
|
|
|
|
useconfigure=true
|
2022-01-08 13:32:29 +00:00
|
|
|
use_fresh_config_sub=true
|
2022-05-25 10:51:13 +00:00
|
|
|
config_sub_paths=("build-aux/config.sub")
|
2021-04-25 10:20:15 +00:00
|
|
|
files="https://gnupg.org/ftp/gcrypt/npth/npth-${version}.tar.bz2 npth-${version}.tar.bz2 1393abd9adcf0762d34798dc34fdcf4d0d22a8410721e76f1e3afcd1daa4e2d1"
|
|
|
|
auth_type=sha256
|
2021-04-14 02:31:52 +00:00
|
|
|
|
|
|
|
configure() {
|
2021-09-26 22:16:18 +00:00
|
|
|
run ./configure --host="${SERENITY_ARCH}-pc-serenity" --build="$($workdir/build-aux/config.guess)" "${configopts[@]}"
|
2021-04-14 02:31:52 +00:00
|
|
|
}
|