2021-07-13 22:24:28 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-07-12 15:54:12 +00:00
|
|
|
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/util/macros.git"
|
2023-03-19 11:26:11 +00:00
|
|
|
SCRIPT_COMMIT="cb147377e9341af05232f95814022abdecf14024"
|
2021-07-13 22:24:28 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
[[ $TARGET != linux* ]] && return -1
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2021-07-14 21:44:25 +00:00
|
|
|
ffbuild_dockerlayer() {
|
|
|
|
to_df "COPY --from=${SELFLAYER} \$FFBUILD_PREFIX/. \$FFBUILD_PREFIX"
|
|
|
|
to_df "COPY --from=${SELFLAYER} \$FFBUILD_PREFIX/share/aclocal/. /usr/share/aclocal"
|
|
|
|
}
|
|
|
|
|
2021-07-13 22:24:28 +00:00
|
|
|
ffbuild_dockerbuild() {
|
2022-07-12 15:54:12 +00:00
|
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" xorg-macros
|
2021-07-13 22:24:28 +00:00
|
|
|
cd xorg-macros
|
|
|
|
|
|
|
|
autoreconf -i
|
2021-07-14 21:44:25 +00:00
|
|
|
./configure --prefix="$FFBUILD_PREFIX"
|
2021-07-13 22:24:28 +00:00
|
|
|
make -j"$(nproc)"
|
|
|
|
make install
|
|
|
|
}
|