wok-next diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/zeromq/receipt	Wed Jul 02 11:03:41 2014 +0200
     1.3 @@ -0,0 +1,30 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="zeromq"
     1.7 +VERSION="4.0.4"
     1.8 +CATEGORY="misc"
     1.9 +MAINTAINER="pascal.bellard@slitaz.org"
    1.10 +LICENSE="GPL3 LGPL3"
    1.11 +SHORT_DESC="The ZeroMQ messaging library"
    1.12 +WEB_SITE="http://zeromq.org/"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WGET_URL="http://download.zeromq.org/$TARBALL"
    1.15 +
    1.16 +DEPENDS=""
    1.17 +BUILD_DEPENDS="pkg-config util-linux-uuid-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./configure -prefix=/usr $CONFIGURE_ARGS &&
    1.23 +	make &&
    1.24 +	make DESTDIR=$DESTDIR install
    1.25 +}
    1.26 +	
    1.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.28 +genpkg_rules()
    1.29 +{
    1.30 +	mkdir -p $fs/usr/lib
    1.31 +	cp -a $install/usr/bin $fs/usr
    1.32 +	cp -a $install/usr/lib/*.so* $fs/usr
    1.33 +}