29 lines
834 B
Plaintext
29 lines
834 B
Plaintext
|
# 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"
|
||
|
|
||
|
}
|