Package Details: winbox 3.40-2

Git Clone URL: https://aur.archlinux.org/winbox.git (read-only, click to copy)
Package Base: winbox
Description: Mikrotik RouterOS GUI Configurator (wine)
Upstream URL: https://mikrotik.com/download
Licenses: custom
Submitter: TomHetmer
Maintainer: dundee (eworm)
Last Packager: eworm
Votes: 53
Popularity: 0.60
First Submitted: 2013-05-11 20:19 (UTC)
Last Updated: 2024-04-19 20:52 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

33Fraise33 commented on 2021-04-28 06:28 (UTC)

I can confirm that running wine 6.7 fixes the issue that popped up in 6.6.

skraw commented on 2021-04-24 07:37 (UTC)

Hello, having the same problem, in my case a downgrade to wine 6.4-1 worked as well.

dapilori commented on 2021-04-16 09:35 (UTC)

I also have issues with wine 6.6-1. Also in my case, downgrading to 6.5-2 fixes the issue.

aminvakil commented on 2021-04-12 05:48 (UTC)

Does not work with wine 6.6-1. Downgrading to wine 6.5-2 fixed the problem for me.

33Fraise33 commented on 2020-08-13 07:59 (UTC)

For anyone having issues with the terminal spacing text very weirdly, use the 'optional package for better fonts': ttf-ms-fonts

Scaorphswarerss commented on 2020-07-17 17:05 (UTC)

https://github.com/Scaorphswarerss/winboxhelpers/blob/master/winbox Here is patch for better fonts

aminvakil commented on 2020-04-16 17:00 (UTC)

New Version (3.22) sometimes causes problem when opening log and crashes the whole winbox.

Downgraded to 3.20

nycex commented on 2020-02-01 15:41 (UTC)

Hello, it would be great if you could make the WINEPREFIX configurable or xdg compliant, e.g. by setting $WINEPREFIX like WINEPREFIX="${WINBOXPREFIX:-$HOME/.winbox}/wine", WINEPREFIX="${XDG_DATA_HOME:-$HOME/.local/share}/winbox/wine" or both i.e. WINEPREFIX="${WINBOXPREFIX:-${XDG_DATA_HOME:-$HOME/.local/share}/winbox}/wine" instead of WINEPREFIX="$HOME"/.winbox/wine.

Omar007 commented on 2020-01-10 11:09 (UTC) (edited on 2020-01-10 11:12 (UTC) by Omar007)

In case it interests people, I have updated the patch for the 3.20 version of this PKGBUILD.

--- PKGBUILD    2020-01-10 12:01:32.653241175 +0100
+++ PKGBUILD    2020-01-10 12:05:45.021172620 +0100
@@ -6,25 +6,27 @@
 pkgrel=1
 pkgdesc="Mikrotik RouterOS GUI Configurator (wine)"
 url="<http://www.mikrotik.com>"
-arch=('x86_64')
+arch=('i686' 'x86_64')
 license=('custom')
 depends=('wine')
 optdepends=(
   'ttf-ms-fonts: for better fonts'
 )
 install=${pkgname}.install
-source=("${pkgname}-${pkgver}.exe::<https://download.mikrotik.com/winbox/>${pkgver}/${pkgname}64.exe"
-        "${pkgname}.desktop"
+source_i686=("${pkgname}-${pkgver}.exe::<https://download.mikrotik.com/winbox/>${pkgver}/${pkgname}.exe")
+source_x86_64=("${pkgname}-${pkgver}.exe::<https://download.mikrotik.com/winbox/>${pkgver}/${pkgname}64.exe")
+source=("${pkgname}.desktop"
         "${pkgname}.png"
         "${pkgname}")
-sha256sums=('20d270bc8d71d9a56bee3548f455a16cb8853898149f85e9157bbe05c81ef37c'
-            '6e9ffe5ff24d286d2d719455dd52f6ddf8c5ed2ba0494c566a67555df37d5c19'
+sha256sums_i686=('c2dd397835284710c2231e8b5f1893a72ea6fcaeae4be553a08553ed71eb4ed8')
+sha256sums_x86_64=('20d270bc8d71d9a56bee3548f455a16cb8853898149f85e9157bbe05c81ef37c')
+sha256sums=('6e9ffe5ff24d286d2d719455dd52f6ddf8c5ed2ba0494c566a67555df37d5c19'
             '603eaed8dfb5b6146712c5cee801e6d77f1f45d6bd5c4b545f9f84193834d380'
             'e7d6a2ffc0eda07ac40db88d92629bf8b1e2fa9433f3b74b1eef3437c1d0f6c6')

 package() {
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}.exe" "${pkgdir}/usr/share/${pkgname}/${pkgname}.exe"
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}.exe" "${pkgdir}/usr/share/${pkgname}/${pkgname}.exe"
   install -Dm755 "${srcdir}/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm655 "${srcdir}/${pkgname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -Dm655 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
+  install -Dm644 "${srcdir}/${pkgname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
+  install -Dm644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
 }