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 72D13DC10FE for ; Thu, 7 Apr 2016 10:56:50 +0000 (UTC) Received: from mail-qk0-f178.google.com (mail-qk0-f178.google.com [209.85.220.178]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 2E108DC036E for ; Thu, 7 Apr 2016 10:56:48 +0000 (UTC) Received: by mail-qk0-f178.google.com with SMTP id r184so28832207qkc.1 for ; Thu, 07 Apr 2016 03:56:48 -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=80uPARPWUZykV58plqFZnIyyL46GP3PjFKvjTRFDUKM=; b=bPTc9qG60wPisvq08QeoiMPw2hC5LyLzeiXoEq8l2YecoDp64VuWOHK8U1wtWrInao UvXHOCJGdbWfmCpCRSu3RXP8r0g0GbnaevG8nDwVlRBCHoLD/0Hvz9anNlFi4vQu+8IZ bDDoxU3u3K46nozyZfrAjvpnrNYM3+um8sxR4= 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=80uPARPWUZykV58plqFZnIyyL46GP3PjFKvjTRFDUKM=; b=TW7kZhQ6hG3qfpkuPGQKH07tNXYI+1y9sDl/6rIpE5rkZYDz3PJh1O/C33kyAsUH8H byOZJx9nnyGXNbdzLfa5A3Ap32v0faGyNgSaNO0abe4wYcXbCDyqj8TeeQ3cqAcO0rRk E1AMrp5hUJ7oxZuawxkdoM4d82IhhJ7B/ksL12pwLzcIKho+O6kBSijN9ZVpnRGgAASt 7GqNIwBzssgb0xk6NEbVfUV5Gw06OLl1PStExquCFcZoqctxMSdFsT8Qg8soe+ZQR4A1 a1szuIPUaRwENrVUgBxZPVV+mzFNBPlirS7DTqoQtXzLK6ssUksOVsOHQwEsQcKtcwOO 4LtA== X-Gm-Message-State: AD7BkJI3Khs2qbMMD4juhyc5tK8ArwbZiipZKFbyU2SpkArxP6CcuD3IHvnGZitRGw065JS0h8fh6rCUmcEJmidb+CVfCMcD9cXDwqebCtWjKIR46NeBqkO82KEFHX/ejNpEwYIpVXhIdSoz9rqXAw== 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.55.27.199 with SMTP id m68mr2571971qkh.109.1460026607773; Thu, 07 Apr 2016 03:56:47 -0700 (PDT) Received: from hendrix.dafiti.local ([200.205.195.2]) by smtp.gmail.com with ESMTPSA id i46sm3144819qgd.19.2016.04.07.03.56.46 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 07 Apr 2016 03:56:47 -0700 (PDT) From: Fabio da Silva Ribeiro To: alpine-aports@lists.alpinelinux.org Cc: Fabio da Silva Ribeiro Subject: [alpine-aports] [PATCH] testing/php7-oauth: PHP7 OAuth package Date: Thu, 7 Apr 2016 07:56:41 -0300 Message-Id: <1460026601-8913-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-oauth/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 testing/php7-oauth/APKBUILD diff --git a/testing/php7-oauth/APKBUILD b/testing/php7-oauth/APKBUILD new file mode 100644 index 0000000..c9ef16d --- /dev/null +++ b/testing/php7-oauth/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Fabio Ribeiro +# Maintainer: Fabio Ribeiro +pkgname=3Dphp7-oauth +_pkgreal=3Doauth +pkgver=3D2.0.1 +_pkgver=3D${pkgver} +pkgrel=3D0 +pkgdesc=3D"OAuth is an authorization protocol built on top of HTTP." +url=3D"http://pecl.php.net/package/$_pkgreal" +arch=3D"x86_64 armhf" +license=3D"PHP" +depends=3D +pecldepends=3D"php7-dev autoconf pcre-dev" +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/60_$_pkgreal.= ini +} + +md5sums=3D"d8fb8bc415f1ccef01c728d45f8bd4fa oauth-2.0.1.tgz" +sha256sums=3D"fcd6956a64c437af6704eaf0459776513f05cf878ef32cbf5ee09f1a6142= fd9a oauth-2.0.1.tgz" +sha512sums=3D"904eb945303fdbe4c36fa7ba80ebe56796eb2d3b506140827ddcb50fce94= b3fab98ed67e7b93b6b56acb20251e79dd8de6218bbfe064ae4cdbe78d9720ac93f7 oauth= -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 ---