Package Details: winbox 4.0beta12-1

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

Latest Comments

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

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"
 }

Omar007 commented on 2019-12-09 22:23 (UTC) (edited on 2019-12-09 22:24 (UTC) by Omar007)

Since this has been out of date for a while, I've been using the following patch on top of the current PKGBUILD. It updates to 3.20, separates for 32 and 64 bit and cleans up the permissions for the installed files.

(I do additionally also patch the 'winbox' file to conform to the XDG Base Directory Specification but for getting a latest package that is irrelevant so I excluded that here)

--- PKGBUILD    2019-12-09 22:45:17.900790392 +0100
+++ PKGBUILD    2019-12-09 22:50:26.311025362 +0100
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Milde <daniel / milde.cz>

 pkgname=winbox
-pkgver=3.19
+pkgver=3.20
 pkgrel=1
 pkgdesc="Mikrotik RouterOS GUI Configurator (wine)"
 url="<http://www.mikrotik.com>"
@@ -13,18 +13,20 @@
   'ttf-ms-fonts: for better fonts'
 )
 install=${pkgname}.install
-source=("${pkgname}-${pkgver}.exe::<http://download2.mikrotik.com/routeros/winbox/>${pkgver}/${pkgname}.exe"
-        "${pkgname}.desktop"
+source_i686=("${pkgname}-${pkgver}.exe::<http://download.mikrotik.com/winbox/>${pkgver}/${pkgname}.exe")
+source_x86_64=("${pkgname}-${pkgver}.exe::<http://download.mikrotik.com/winbox/>${pkgver}/${pkgname}64.exe")
+source=("${pkgname}.desktop"
         "${pkgname}.png"
         "${pkgname}")
-sha256sums=('494ce796164c1a2dae4ca37e3ea277866068fd736fbb09dd651cb22923faee5a'
-            '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"
 }

shock commented on 2019-07-23 09:17 (UTC)

3.19 has been available for quite some time. If you don't want to wait use the tools menu item and "check for updates" and it will put you on 3.19.

Pezhman commented on 2018-08-21 07:48 (UTC)

Thank you for to maintain this package. There is the new version 3.17 now