diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/zeromq |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/zeromq')
-rw-r--r-- | community/zeromq/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/zeromq/PKGBUILD b/community/zeromq/PKGBUILD new file mode 100644 index 000000000..e7c729562 --- /dev/null +++ b/community/zeromq/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Kyle Keen <keenerd@gmail.com> +pkgname=zeromq +pkgver=2.1.3 +pkgrel=1 +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-ng') +makedepends=() +source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz) +md5sums=('ab794a174210b9e8096a4efd1d1a4d42') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure prefix="$pkgdir/usr" + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make install +} + +md5sums=('ae681af2df1b7191aeecfcb23bb73864') |