2022-02-24 02:35:53 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
|
2023-03-27 12:35:57 +03:00
|
|
|
port='bdwgc'
|
|
|
|
version='8.2.2'
|
|
|
|
use_fresh_config_sub='true'
|
|
|
|
files="https://github.com/ivmai/bdwgc/releases/download/v$version/gc-$version.tar.gz bdwgc.tar.gz f30107bcb062e0920a790ffffa56d9512348546859364c23a14be264b38836a0"
|
|
|
|
depends=("libatomic_ops")
|
|
|
|
workdir="gc-$version"
|
|
|
|
auth_type='sha256'
|
2022-02-24 02:35:53 +03:00
|
|
|
|
2023-03-27 12:35:57 +03:00
|
|
|
useconfigure='true'
|
2022-05-07 09:44:52 +03:00
|
|
|
configopts=("--enable-threads=posix")
|
|
|
|
pre_configure() {
|
|
|
|
run ./autogen.sh
|
2022-02-24 02:35:53 +03:00
|
|
|
}
|