Package Details: qamqp-git v0.5.0.r29.gb5c660a-1

Git Clone URL: https://aur.archlinux.org/qamqp-git.git (read-only, click to copy)
Package Base: qamqp-git
Description: Qt4/Qt5 implementation of AMQP 0.9.1
Upstream URL: https://github.com/mbroadst/qamqp
Licenses: GPL2
Submitter: erihel
Maintainer: None
Last Packager: micwoj92
Votes: 0
Popularity: 0.000000
First Submitted: 2014-10-15 16:07 (UTC)
Last Updated: 2021-04-16 04:17 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

micwoj92 commented on 2021-03-29 04:29 (UTC)

Needs git in makedepends.

erihel commented on 2015-03-19 15:12 (UTC)

Thank you for pointing that.

nylocx commented on 2015-03-19 10:01 (UTC)

Hi, there is a small bug in the PKGBUILD file which makes it try to install to /lib and /include Fixed PKGBUILD with PREFIX="$pkgdir/usr" : pkgname=qamqp-git pkgver=r225.ad19dc3 pkgver() { cd "$srcdir/qamqp" printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } pkgrel=1 pkgdesc="Qt4/Qt5 implementation of AMQP 0.9.1" arch=('i686' 'x86_64') url="https://github.com/mbroadst/qamqp" license=('MIT') depends=('qt5-base') source=("git+https://github.com/mbroadst/qamqp.git") md5sums=('SKIP') build() { cd "$srcdir/qamqp" qmake PREFIX="$pkgdir/usr" make } package() { cd "$srcdir/qamqp" make install }