summaryrefslogtreecommitdiff
path: root/community/zeromq/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/zeromq/PKGBUILD')
-rw-r--r--community/zeromq/PKGBUILD11
1 files changed, 7 insertions, 4 deletions
diff --git a/community/zeromq/PKGBUILD b/community/zeromq/PKGBUILD
index 0131fe0a4..6f3f66b54 100644
--- a/community/zeromq/PKGBUILD
+++ b/community/zeromq/PKGBUILD
@@ -1,16 +1,18 @@
-# $Id: PKGBUILD 80560 2012-11-25 15:27:50Z kkeen $
+# $Id: PKGBUILD 81045 2012-12-11 02:47:01Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
pkgname=zeromq
pkgver=3.2.2
-pkgrel=1
+pkgrel=2
pkgdesc="Fast messaging system built on sockets, C and C++ bindings. aka 0MQ, ZMQ."
arch=('i686' 'x86_64')
url="http://www.zeromq.org"
license=('LGPL')
depends=('gcc-libs' 'util-linux')
makedepends=('python2')
-source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz)
-md5sums=('df68431d9300da84a1a5f9a2784e33de')
+source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
+ https://raw.github.com/zeromq/cppzmq/master/zmq.hpp)
+md5sums=('df68431d9300da84a1a5f9a2784e33de'
+ '80b674e98fcc4b4f23ef8b08ce4b051d')
build() {
cd "$srcdir/$pkgname-$pkgver"
@@ -22,6 +24,7 @@ build() {
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
+ install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
}