Package Details: qwbfs 1.2.6-3

Git Clone URL: https://aur.archlinux.org/qwbfs.git (read-only, click to copy)
Package Base: qwbfs
Description: Cross platform WBFS file system manager
Upstream URL: https://github.com/pasnox/qwbfsmanager
Licenses: GPL2
Submitter: vinipsmaker
Maintainer: NaBoo
Last Packager: twiggers
Votes: 27
Popularity: 0.000000
First Submitted: 2012-07-01 16:13 (UTC)
Last Updated: 2019-12-16 13:52 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Pinned Comments

Quot commented on 2018-10-03 00:45 (UTC) (edited on 2018-10-03 02:33 (UTC) by Quot)

Thanks, NaBoo. That patch worked perfectly for me.

Also, when I have to run QWBFS with sudo to get it to read from my external drive (which, I believe is normal), but it wasn't rendering properly. If anyone else is having this issue, try running the program with "sudo QT_X11_NO_MITSHM=1 qwbfsmanager". That allowed me to run as sudo and have it render properly.

This issue seems to come from a newer security feature in QT. I found the solution here: https://github.com/unetbootin/unetbootin/issues/66#issuecomment-219277217

Latest Comments

« First ‹ Previous 1 2

vinipsmaker commented on 2016-02-28 17:52 (UTC)

@Salamandar: Updated, but I've skipped your changes related to submodules. Building a PKGBUILD shouldn't trigger internet traffic. https://wiki.archlinux.org/index.php/VCS_package_guidelines#Git_Submodules

Salamandar commented on 2016-02-28 13:05 (UTC)

More than the 1.2.6 update, the PKGBUILD can be cleaner : # Maintainer: Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> pkgname=qwbfs pkgver=1.2.6 pkgrel=1 pkgdesc="Cross platform WBFS file system manager" arch=('i686' 'x86_64') url="https://github.com/pasnox/qwbfsmanager" license=('GPL2') # Also 'openssl', but already satisfied: depends=('qt5-base' 'hicolor-icon-theme') makedepends=('git' 'make') install=${pkgname}.install source=("qwbfs::git+https://github.com/pasnox/qwbfsmanager#tag=v1.2.6") sha256sums=('SKIP') prepare() { cd "$srcdir/qwbfs" git submodule update --init --recursive } build() { cd "$srcdir/qwbfs" qmake PREFIX=/usr make } package() { cd "$srcdir/qwbfs" mkdir -p "$pkgdir/usr/bin" cp bin/qwbfsmanager "$pkgdir/usr/bin" mkdir -p "$pkgdir/usr/share/applications" cp packages/QWBFSManager.desktop "$pkgdir/usr/share/applications" mkdir -p "$pkgdir/usr/share/icons/hicolor/512x512/apps" cp qwbfs/resources/qwbfsmanager.png \ "$pkgdir/usr/share/icons/hicolor/512x512/apps" }

vinipsmaker commented on 2014-12-03 12:47 (UTC)

@samuelhm: thanks for the hint but it's actually a build dependency, so I added to makedepends

samuelhm commented on 2014-12-02 19:26 (UTC)

you need mark git as a dependency, if git is not installed, the package launch error.

vinipsmaker commented on 2014-05-13 18:30 (UTC)

@jrandiniy: Thanks for pointing me. Updated!

jrandiny commented on 2014-05-13 12:05 (UTC)

qwbfs has moved to github... and already released version 1.2.4

lb.laboon commented on 2013-03-02 21:51 (UTC)

Flagged this as out of date. The qt package has been changed to qt4. The PKGBUILD dependency needs to be updated to reflect this and qmake needs to be changed to qmake-qt4.