wok view zeromq/receipt @ rev 16789

Add zeromq
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 02 11:03:41 2014 +0200 (2014-07-02)
parents
children 9170e4b0128c
line source
1 # SliTaz package receipt.
3 PACKAGE="zeromq"
4 VERSION="4.0.4"
5 CATEGORY="misc"
6 MAINTAINER="pascal.bellard@slitaz.org"
7 LICENSE="GPL3 LGPL3"
8 SHORT_DESC="The ZeroMQ messaging library"
9 WEB_SITE="http://zeromq.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://download.zeromq.org/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="pkg-config util-linux-uuid-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure -prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr
30 }