2021-01-22 16:44:05 +00:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2020-10-13 11:53:17 +00:00
|
|
|
port=pkgconf
|
2021-08-01 11:16:15 +00:00
|
|
|
version=1.8.0
|
2023-07-04 09:42:04 +00:00
|
|
|
files="https://distfiles.ariadne.space/pkgconf/pkgconf-${version}.tar.xz pkgconf-${version}.tar.xz ef9c7e61822b7cb8356e6e9e1dca58d9556f3200d78acab35e4347e9d4c2bbaf"
|
2021-04-25 10:20:15 +00:00
|
|
|
auth_type=sha256
|
2020-10-13 11:53:17 +00:00
|
|
|
useconfigure=true
|
2022-01-08 13:32:29 +00:00
|
|
|
use_fresh_config_sub=true
|
|
|
|
# FIXME: This looks suspiciously host-y...
|
2021-09-26 22:16:18 +00:00
|
|
|
configopts=("--prefix=/usr/local" "--with-pkg-config-dir=/usr/local/lib/pkgconfig")
|
2020-10-13 11:53:17 +00:00
|
|
|
|
|
|
|
post_install() {
|
2021-04-20 15:42:04 +00:00
|
|
|
run mkdir -p "${SERENITY_INSTALL_ROOT}/bin"
|
2021-03-11 18:50:44 +00:00
|
|
|
# FIXME: Same here, what is this about?!
|
2021-04-20 15:42:04 +00:00
|
|
|
run ln -sf /usr/local/bin/pkgconf "${SERENITY_INSTALL_ROOT}/usr/local/bin/pkg-config"
|
2020-10-13 11:53:17 +00:00
|
|
|
}
|