wine: create symlink in /usr/bin to wine64 to please winetricks
resolves #22572
This commit is contained in:
parent
24e10e6727
commit
1ee1158013
1 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'wine'
|
||||
pkgname=wine
|
||||
version=5.9
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
configure_args="--bindir=/usr/libexec/wine"
|
||||
short_desc="Run Microsoft Windows applications"
|
||||
|
@ -61,6 +61,11 @@ post_install() {
|
|||
do
|
||||
mv ${DESTDIR}/usr/libexec/wine/${file} ${DESTDIR}/usr/bin/
|
||||
done
|
||||
case $XBPS_TARGET_MACHINE in
|
||||
x86_64*)
|
||||
ln -s ${_wine_libexec}/wine64 ${DESTDIR}/usr/bin/wine64
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
libwine_package() {
|
||||
|
|
Loading…
Reference in a new issue