Commit 0be9e60d authored by Pavel Beketov's avatar Pavel Beketov

Second File

parent e1382c28
fatal()
{
echo "$*" >&2
exit 1
}
get_current_branch()
{
git branch | grep '^\*' | sed 's/^..//' | tr -d "\n"
}
# work repo
REPO=
BUILDREPO=../wine
BUILDREPO64=${BUILDREPO}64
# gcc, clang
COMPILER=gcc
# mingw, clang, none
CROSSCOMPILER=none
# win32, win64, both
BUILDARCH=both
WINE_BUILD_OPTIONS="--disable-tests --without-gstreamer --without-oss --without-capi --without-hal --with-xattr"
# see rpm-macros-feature too
if [ "$(epm print info -e)" != "ALTLinux/p9" ] && [ "$(epm print info -e)" != "AstraLinux/orel" ] ; then
# Vulkan support
WINE_BUILD_OPTIONS="$WINE_BUILD_OPTIONS --with-vulkan --with-vkd3d --with-faudio"
fi
if [ "$(epm print info -e)" = "AstraLinux/orel" ] ; then
WINE_BUILD_OPTIONS="$WINE_BUILD_OPTIONS --without-sdl"
fi
# https://bugs.etersoft.ru/show_bug.cgi?id=15244
#WINE_BUILD_OPTIONS="$WINE_BUILD_OPTIONS --without-unwind"
# удалённая система, куда копировать код
TARGET=/tmp/WINE/
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment