X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 2B0FFDC0977 for ; Thu, 7 Apr 2016 02:48:27 +0000 (UTC) Received: from mail-qg0-f43.google.com (mail-qg0-f43.google.com [209.85.192.43]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 01FF2DC01BD for ; Thu, 7 Apr 2016 02:48:26 +0000 (UTC) Received: by mail-qg0-f43.google.com with SMTP id j35so52716145qge.0 for ; Wed, 06 Apr 2016 19:48:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dafiti.com.br; s=google; h=mime-version:from:to:cc:subject:date:message-id :content-transfer-encoding; bh=EdHIYRlb/u/b5Q/x4RgrO0wVeTqVgask7PEBPrfph9k=; b=BMVlo/I0tTeL7aRt0Uguo6sJ+Qs6uNO14yl2H6QuE5xRd4Tfknvos0H76+/kHxCsjl 619BK/JF5LP5WBWmgSfQCfBoL23+tsgC/OmRWYke5qw7zS+L6xqF/yrBZlxbP6UKjV/R +J9p06/Q4J/84xOhwOSjYN10vZdXbx5pk3ZXw= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:to:cc:subject:date:message-id :content-transfer-encoding; bh=EdHIYRlb/u/b5Q/x4RgrO0wVeTqVgask7PEBPrfph9k=; b=I0xa+iREpmtxP3KLi7HMNKvxUfzUb0/6TkFJX81sf/CBohmSXk/mmWZfxAXXxxNznk u+EUXfhHeMviYY5wJmuluuUgo2ZSNJWcfN/kZ84/R9rSrIoBmNERT7flmJ+ZKn+bxoVG rMFXL2l5rb/RMSNxHuCfeIxtH+rvaZcFlQ4tHaJuJewvun+jmzKFxxIHRVZd/g5JViII Zv8mbHm44MZLgidxLiohgu4Rf761Aj04UQd6Njrbb/Bh1Ah8ylGdos23w+s9jqVhZiaD mPDo5hBR4RZPWNKr/bx6cnMxSIFVpUQfn1tumvfFEhPgKTVm3BjkdYbh0QJHcFF9lj+z B+eQ== X-Gm-Message-State: AD7BkJJRq735N6/bI9NWUAOMC9AHPGDlO+zzmjowD3hc0ju/EfcMbQ6PhCNNuhbS4G/NfB2Vi/t134Ktcmd38JhOK8wRyPQtMPq4tIsKZuKMhaN03EHnbjzp7Jzf5+Nit85pNxu0pm2k12ZmwdOKZA== X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 X-Received: by 10.140.82.20 with SMTP id g20mr630865qgd.69.1459996827292; Wed, 06 Apr 2016 19:40:27 -0700 (PDT) Received: from hendrix.dafiti.local ([200.205.195.2]) by smtp.gmail.com with ESMTPSA id j68sm2538161qge.41.2016.04.06.19.40.25 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 06 Apr 2016 19:40:26 -0700 (PDT) From: Fabio da Silva Ribeiro To: alpine-aports@lists.alpinelinux.org Cc: Fabio da Silva Ribeiro Subject: [alpine-aports] [PATCH] testing/php7-msgpack: PHP7 MessagePack package Date: Wed, 6 Apr 2016 23:40:22 -0300 Message-Id: <1459996822-3503-1-git-send-email-silva.ribeiro@dafiti.com.br> X-Mailer: git-send-email 2.5.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV using ClamSMTP --- testing/php7-msgpack/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 testing/php7-msgpack/APKBUILD diff --git a/testing/php7-msgpack/APKBUILD b/testing/php7-msgpack/APKBUILD new file mode 100644 index 0000000..35c5793 --- /dev/null +++ b/testing/php7-msgpack/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Fabio Ribeiro +# Maintainer: Fabio Ribeiro +pkgname=3Dphp7-msgpack +_pkgreal=3Dmsgpack +pkgver=3D2.0.1 +_pkgver=3D${pkgver} +pkgrel=3D0 +pkgdesc=3D"This extension provide API for communicating with MessagePack s= erialization." +url=3D"http://pecl.php.net/package/$_pkgreal" +arch=3D"x86_64 armhf" +license=3D"PHP" +depends=3D"php7-session" +pecldepends=3D"php7-dev autoconf" +makedepends=3D"$pecldepends" +install=3D"" +subpackages=3D"" +source=3D"http://pecl.php.net/get/$_pkgreal-$_pkgver.tgz" + +builddir=3D"$srcdir"/$_pkgreal-$_pkgver + +build() { + cd "$builddir" + phpize7 || return 1 + ./configure --prefix=3D/usr --with-php-config=3Dphp-config7 || return 1 + make || return 1 +} + +package() { + cd "$builddir" + make INSTALL_ROOT=3D"$pkgdir"/ install || return 1 + install -d "$pkgdir"/etc/php7/conf.d || return 1 + echo "extension=3D$_pkgreal.so" > "$pkgdir"/etc/php7/conf.d/50_$_pkgreal.= ini +} + +md5sums=3D"4d1db4592ffa4101601aefc794191de5 msgpack-2.0.1.tgz" +sha256sums=3D"d32aeef9af3be6135a06f29e28ec9f386cde9d90ad346a396d9ba8018a70= 44c6 msgpack-2.0.1.tgz" +sha512sums=3D"ad567650b93409728d0f9c4bea1812083961b4070d583890a21311e93163= 5fa5252ebf7746ea2d7ee8961f0ea5d86ee04b860a00270b8790bcb3064da7cfd3b9 msgpa= ck-2.0.1.tgz" --=20 2.5.0 --=20 *** Esta mensagem, incluindo seus anexos, pode conter informa=E7=F5es confidenc= iais=20 e/ou privilegiadas. Se voc=EA n=E3o for a pessoa autorizada a receber esta= =20 mensagem, n=E3o pode usar, copiar ou divulgar as informa=E7=F5es nela conti= das ou=20 tomar qualquer a=E7=E3o baseada nessas informa=E7=F5es. Caso esta mensagem = tenha=20 sido recebida por engano, por favor avise imediatamente o remetente,=20 respondendo o e-mail e em seguida elimine-a do seu sistema. Agradecemos sua= =20 coopera=E7=E3o. This message, including any attachments, may contain confidential and/or=20 privileged information. If you are not the addressee or authorized to=20 receive this for the addressee, you must not use, copy, disclose or take=20 any action based on this message or any information herein. If you have=20 received this message in error, please advise the sender immediately by=20 reply e-mail and delete this message.Thank you for your cooperation --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---