Thanks for packaging this! The .install file is no longer necessary as Pacman now handles those directives automatically.
Search Criteria
Package Details: qwbfs 1.2.6-2
Git Clone URL: | https://aur.archlinux.org/qwbfs.git (read-only) |
---|---|
Package Base: | qwbfs |
Description: | Cross platform WBFS file system manager |
Upstream URL: | https://github.com/pasnox/qwbfsmanager |
Licenses: | |
Submitter: | vinipsmaker |
Maintainer: | vinipsmaker |
Last Packager: | vinipsmaker |
Votes: | 26 |
Popularity: | 0.682245 |
First Submitted: | 2012-07-01 16:13 |
Last Updated: | 2016-09-06 03:03 |
Dependencies (3)
- hicolor-icon-theme (hicolor-icon-theme-git)
- qt5-base (qt5-base-git)
- git (git-git) (make)
Required by (0)
Sources (3)
Latest Comments
vinipsmaker commented on 2016-09-06 03:03
ainola commented on 2016-09-05 19:39
vinipsmaker commented on 2016-02-28 17:52
@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
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
@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
you need mark git as a dependency, if git is not installed, the package launch error.
vinipsmaker commented on 2014-05-13 18:30
@jrandiniy:
Thanks for pointing me. Updated!
jrandiny commented on 2014-05-13 12:05
qwbfs has moved to github... and already released version 1.2.4
lb.laboon commented on 2013-03-02 21:51
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.
Thanks @ainola. Problem solved.