wine-7.18

This commit is contained in:
Rmys
2022-09-25 13:38:07 +03:00
committed by GitHub
parent 41546ba4f7
commit f949f9a5b8
2 changed files with 11 additions and 4 deletions
+3 -2
View File
@@ -38,6 +38,7 @@ def setup():
--with-dbus \
--with-opengl \
--with-alsa \
--prefix=/usr \
--with-x \
"
@@ -72,9 +73,9 @@ def install():
shelltools.cd("build-wine")
if get.buildTYPE() == "emul32":
autotools.install("UPDATE_DESKTOP_DATABASE=/bin/true libdir=%s/usr/lib32 dlldir=%s/usr/lib32/wine" % (get.installDIR(), get.installDIR()))
autotools.install("LDCONFIG=/bin/true UPDATE_DESKTOP_DATABASE=/bin/true prefix=%s/usr libdir=%s/usr/lib32 dlldir=%s/usr/lib32/wine" % (get.installDIR(), get.installDIR(), get.installDIR()))
else:
autotools.install("UPDATE_DESKTOP_DATABASE=/bin/true libdir=%s/usr/lib dlldir=%s/usr/lib/wine" % (get.installDIR(), get.installDIR()))
autotools.install("LDCONFIG=/bin/true UPDATE_DESKTOP_DATABASE=/bin/true prefix=%s/usr libdir=%s/usr/lib dlldir=%s/usr/lib/wine" % (get.installDIR(), get.installDIR(), get.installDIR()))
shelltools.cd("..")