Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eepm
Commits
afd893f6
Commit
afd893f6
authored
Feb 07, 2024
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm play wine: add support for wow64 build
parent
17e55985
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
21 deletions
+26
-21
wine.sh
play.d/wine.sh
+26
-21
No files found.
play.d/wine.sh
View file @
afd893f6
...
@@ -34,7 +34,7 @@ arch="$(epm print info -a)"
...
@@ -34,7 +34,7 @@ arch="$(epm print info -a)"
if
[
"
$vendor
"
!=
"alt"
]
;
then
if
[
"
$vendor
"
!=
"alt"
]
;
then
# Устанавливаем wine
# Устанавливаем wine
epm
install
$
PKGNAME
||
exit
epm
install
$
MAIN
||
exit
case
$arch
in
case
$arch
in
x86_64
)
x86_64
)
...
@@ -66,28 +66,33 @@ fi
...
@@ -66,28 +66,33 @@ fi
fi
fi
case
$arch
in
if
[
"
$arch
"
=
"x86"
]
;
then
x86_64
)
PKGNAMES
=
"
$PKGNAMES
$PKGCOMMON
"
PKGNAMES
=
"
$PKGNAMES
$PKGNAMES32
$PKGCOMMON
"
epm
install
$PKGNAMES
||
exit
[
-n
"
$ONLY32
"
]
&&
PKGNAMES
=
"
$PKGNAMES32
$PKGCOMMON
"
exit
;;
fi
x86
)
PKGNAMES
=
"
$PKGNAMES
$PKGCOMMON
"
if
[
"
$arch
"
=
"x86_64"
]
&&
[
-n
"
$ONLY32
"
]
;
then
;;
PKGNAMES
=
"
$PKGNAMES32
$PKGCOMMON
"
*
)
epm
install
$PKGNAMES
||
exit
echo
"Arch
$arch
is not yet supported"
&&
exit
1
# Доставляем пропущенные модули (подпакеты) для установленных 64-битных
esac
epm prescription i586-fix
exit
fi
if
[
"
$arch
"
=
"x86_64"
]
;
then
PKGNAMES
=
"
$PKGNAMES
$PKGCOMMON
"
epm
install
$PKGNAMES
||
exit
# for non wow64 packages install 32 bit part
if
!
epm ql
$MAIN
|
grep
-q
"/i386-windows/"
;
then
epm
install
$PKGNAMES32
||
exit
# Доставляем пропущенные модули (подпакеты) для установленных 64-битных
epm prescription i586-fix
fi
exit
fi
# Устанавливаем wine
echo
"Arch
$arch
is not yet supported"
&&
exit
1
epm
install
$PKGNAMES
||
exit
# TODO:
# TODO:
# epm policy $MAIN-gl 2>/dev/null >/dev/null || OLD wine packaging name scheme
# epm policy $MAIN-gl 2>/dev/null >/dev/null || OLD wine packaging name scheme
case
$arch
in
x86_64
)
# Доставляем пропущенные модули (подпакеты) для установленных 64-битных
epm prescription i586-fix
;;
esac
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment