X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-pd0-f169.google.com (mail-pd0-f169.google.com [209.85.192.169]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 3EA15DC006A for ; Mon, 22 Apr 2013 08:39:48 +0000 (UTC) Received: by mail-pd0-f169.google.com with SMTP id 14so1608572pdc.14 for ; Mon, 22 Apr 2013 01:39:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=hcszkYLZytOr8w4gh/wcBZY9EnfwjrCVrdN4xoCuy20=; b=OMhYBaEB8bTlAs8KJraa7Ew+oTU8NGiJCG62G8We5gF2Mts9O3UDiNpsi8V8UmxRka 91OthWD3LRV0vQ3kjO1/OjErJmXR2jWtjSyZq4RayWR4CainncRlonu8ZHIUSpcosU8p QxTls/M/NBJ3h2JtL0WylyjSdlbYIMqPladPpIMjoFSY9hGUPXqR5unK3j8Guw8WZpGo MhYUv/vAq4RV2OBB6cEF9MYWYwoEQIuL+Oh2mFP881V2Pk6zP3uirb0FDlkxW8xaoyza 3JhunWpjnxcbcIKKoxe5MlBjl5zR69FookfFpQT+nd1Jhns1QH4oUwBOZyfdmQhMDbWA AjLQ== X-Received: by 10.66.248.6 with SMTP id yi6mr27773668pac.20.1366619987810; Mon, 22 Apr 2013 01:39:47 -0700 (PDT) Received: from localhost.localdomain ([117.237.212.168]) by mx.google.com with ESMTPS id dg5sm24234656pbc.29.2013.04.22.01.39.43 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 22 Apr 2013 01:39:47 -0700 (PDT) From: "V.Krishn" To: alpine-devel@lists.alpinelinux.org Cc: "V.Krishn" Subject: [alpine-devel] [PATCH] Initial APKBUILD file of php-zmq Date: Mon, 22 Apr 2013 08:31:29 +0000 Message-Id: <1366619489-31240-1-git-send-email-vkrishn4@gmail.com> X-Mailer: git-send-email 1.8.0 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: From: "V.Krishn" PHP bindings for 0MQ (ZeroMQ). --- testing/php-zmq/APKBUILD | 32 ++++++++++++++++++++++++++++++++ testing/php-zmq/zmq.ini | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 testing/php-zmq/APKBUILD create mode 100644 testing/php-zmq/zmq.ini diff --git a/testing/php-zmq/APKBUILD b/testing/php-zmq/APKBUILD new file mode 100644 index 0000000..01aa3a5 --- /dev/null +++ b/testing/php-zmq/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: V.Krishn +# Maintainer: +pkgname=php-zmq +pkgver=1.0.5 +pkgrel=1 +pkgdesc="ZeroMQ for PHP" +url="https://github.com/mkoppanen/php-zmq" +arch="all" +license="PHP" +depends="php libzmq" +makedepends="php-dev autoconf zeromq-dev" +subpackages="" +source="saveas-https://github.com/mkoppanen/php-zmq/archive/1.0.5.tar.gz/$pkgname-$pkgver.tar.gz +zmq.ini" +_builddir="$srcdir/php-zmq-$pkgver" + +build() { + cd "$_builddir" + phpize || return 1 + ./configure --enable-zmq \ + --with-php-config=/usr/bin/php-config + make || return 1 +} + +package() { + cd "$_builddir" + make INSTALL_ROOT=$pkgdir install || return 1 + install -D -m644 "$srcdir"/zmq.ini "$pkgdir"/etc/php/conf.d/zmq.ini +} + +md5sums="06e36323b8af330b7aa137cbc3cbe6a4 php-zmq-1.0.5.tar.gz +976eb10e2fb904e342ed3036fb3fc433 zmq.ini" diff --git a/testing/php-zmq/zmq.ini b/testing/php-zmq/zmq.ini new file mode 100644 index 0000000..da8d25f --- /dev/null +++ b/testing/php-zmq/zmq.ini @@ -0,0 +1,2 @@ +;[zmq] +;extension=zmq.so -- 1.8.0 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---