blob: 49b5a2c8587a91b9cbb416955e0031616a6aaed0 (
plain)
1 # Description: Open source universal messaging library
2 # URL: https://zeromq.org/
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on:
5
6 name=libzmq
7 version=4.3.4
8 release=1
9 source=(https://github.com/zeromq/libzmq/archive/refs/tags/v${version}.tar.gz)
10
11 build() {
12 cd ${name}-${version}
13 mkdir build && cd build
14 cmake -D CMAKE_INSTALL_PREFIX=/usr ..
15 make
16 make DESTDIR=${PKG} install
17 }
|