Date: Monday, September 9, 2019 @ 07:57:07 Author: alucryd Revision: 509079
upgpkg: lib32-zeromq 4.3.2-1 Modified: lib32-zeromq/trunk/PKGBUILD ----------+ PKGBUILD | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-09-09 07:47:34 UTC (rev 509078) +++ PKGBUILD 2019-09-09 07:57:07 UTC (rev 509079) @@ -3,11 +3,11 @@ # Contributor: Kyle Keen <[email protected]> pkgname=lib32-zeromq -pkgver=4.3.1 +pkgver=4.3.2 pkgrel=1 pkgdesc='Fast messaging system built on sockets' arch=(x86_64) -url='http://www.zeromq.org' +url=https://www.zeromq.org license=(LGPL) depends=( lib32-gcc-libs @@ -21,9 +21,15 @@ git xmlto ) -source=(git+https://github.com/zeromq/libzmq.git#tag=v${pkgver}) -sha256sums=('SKIP') +source=(git+https://github.com/zeromq/libzmq.git#tag=9ff57777c148561a173515ed82ee30954607f332) +sha256sums=(SKIP) +pkgver() { + cd libzmq + + git describe --tags | sed 's/^v//' +} + prepare() { cd libzmq @@ -35,11 +41,11 @@ export CC='gcc -m32' export CXX='g++ -m32' - export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' + export PKG_CONFIG_PATH=/usr/lib32/pkgconfig ./configure \ - prefix='/usr' \ - --libdir='/usr/lib32' \ + prefix=/usr \ + --libdir=/usr/lib32 \ --disable-static \ --with-libsodium \ --with-pgm \
