27 lines
653 B
Bash
Executable file
27 lines
653 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/util/macros.git"
|
|
SCRIPT_COMMIT="cb147377e9341af05232f95814022abdecf14024"
|
|
|
|
ffbuild_enabled() {
|
|
[[ $TARGET != linux* ]] && return -1
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerlayer() {
|
|
to_df "COPY --from=${SELFLAYER} \$FFBUILD_PREFIX/. \$FFBUILD_PREFIX"
|
|
to_df "COPY --from=${SELFLAYER} \$FFBUILD_PREFIX/share/aclocal/. /usr/share/aclocal"
|
|
}
|
|
|
|
ffbuild_dockerdl() {
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" xorg-macros
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
cd "$FFBUILD_DLDIR"/xorg-macros
|
|
|
|
autoreconf -i
|
|
./configure --prefix="$FFBUILD_PREFIX"
|
|
make -j"$(nproc)"
|
|
make install
|
|
}
|