From aa947bcbb44ccc0c4c4e65bd401b267583b714c2 Mon Sep 17 00:00:00 2001 From: milisbir Date: Sat, 2 Sep 2017 21:50:43 +0300 Subject: [PATCH] zeromq.paketlendi --- talimatname/genel/libpgm/talimat | 19 +++++++++++++++++++ talimatname/genel/zeromq/talimat | 28 ++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 talimatname/genel/libpgm/talimat create mode 100644 talimatname/genel/zeromq/talimat diff --git a/talimatname/genel/libpgm/talimat b/talimatname/genel/libpgm/talimat new file mode 100644 index 000000000..c2e18d956 --- /dev/null +++ b/talimatname/genel/libpgm/talimat @@ -0,0 +1,19 @@ +# Description: OpenPGM: implementation of the Pragmatic General Multicast (PGM, RFC3208) +# URL: https://www.freshports.org/net/openpgm/ +# Packager: milisarge +# Depends on: python + +name=libpgm +version=5.2.122 +release=1 +source=(https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/openpgm/$name-$version.tar.gz +) + +build() { + cd "$SRC/$name-$version/openpgm/pgm" + find . -type f -exec sed -i 's/python/python2/g' {} \+ + cd "$SRC/$name-$version/openpgm/pgm" + ./configure --prefix=/usr + make + make prefix="$PKG/usr" install +} diff --git a/talimatname/genel/zeromq/talimat b/talimatname/genel/zeromq/talimat new file mode 100644 index 000000000..f3b51419a --- /dev/null +++ b/talimatname/genel/zeromq/talimat @@ -0,0 +1,28 @@ +# Description: Fast messaging system built on sockets. C and C++ bindings. aka 0MQ, ZMQ. +# URL: http://www.zeromq.org +# Packager: milisarge +# Depends on: asciidoc xmlto libsodium libpgm + +name=zeromq +version=4.2.2 +release=1 +source=(https://github.com/zeromq/libzmq/releases/download/v$version/$name-$version.tar.gz + https://raw.githubusercontent.com/zeromq/cppzmq/b0e6d4b/zmq.hpp::zmq.hpp.4.2.2) + +build() { + + sed -i 's/libzmq_werror="yes"/libzmq_werror="no"/' $name-$version/configure + cp zmq.hpp.$version zmq.hpp + cd "$SRC/$name-$version" + ./configure prefix=/usr --with-pgm --with-libsodium \ + --enable-static + + make + #LANG=C gcc -c ../zmq.hpp -L ./.libs/ -I ./include/ -o ./test.o + #rm -f test.o + #return 0 + #make -k check + make DESTDIR="$PKG" install + install -Dm644 "$SRC/zmq.hpp.4.2.2" "$PKG/usr/include/zmq.hpp" + +}