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 E9B02DC10FE for ; Thu, 7 Apr 2016 11:29:14 +0000 (UTC) Received: from mail-qg0-f47.google.com (mail-qg0-f47.google.com [209.85.192.47]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id B5F96DC036E for ; Thu, 7 Apr 2016 11:29:14 +0000 (UTC) Received: by mail-qg0-f47.google.com with SMTP id f52so59937599qga.3 for ; Thu, 07 Apr 2016 04:29:14 -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=yXzgCu7Av4XGk7yGw8OT3Y4VYNUsi9cd+A2HR5LgDZM=; b=bnFTasLfFG/Ugp34x7F2A3TNLDI7yQwK5q9E6VCXPt85/Sk4jyqao4DMAOyQ0W1T6A qDDUXlSgcOVm88zLva4KGlIOnSpjC3HEgL5qX2Q3rCBieXQNKC/dcAt5/TQOnjYz7bMz nMHJH30yCf4f19/hyeli2I1h8RLiFzmiC59rE= 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=yXzgCu7Av4XGk7yGw8OT3Y4VYNUsi9cd+A2HR5LgDZM=; b=MsRHuvk35R7hypPHIZEgPSznENkVLD61JvTqLNRmTwkQCQcesE37HVwCyvju2Zp7xw bpdN/9MJ+d0espXe1pgCsPIfHgBTVS3kLCDjckCtzD9d2wCD4HzGta/EnoghAsfth6fq SQGcGvCTeay5eNUu0YEBw7vAqbjcpIVxYUzqskno40tYMCOyXvvwG13uFYbWjO8uOOHK Py797lo8xXfGz2qm20vqeXcKNbSlil0hpz/9s1DPuMoHRQ5SJ4iSK0PbuF26DkaVttsP /wbiXuw+zZht0sBTjxQTJz0ihOnIhm9VsVDYuBEkMOKT2Bv7hOSNKFn4ogFd3wFvmW9L 9EVQ== X-Gm-Message-State: AD7BkJIZo9hyHHVq1b/MZGN3IrUy8pu1aOYhsIWxjDynwrV9w5yV/8lA03BKDEf4kinFfb8GkYQXPqdgEw585t3kkWPzKI4Lr+15AukmYaAAopVWtkH6hE7ey21Y6+Z+h6mLQdwdnJYNsd6sZmvR7Q== 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.22.212 with SMTP id 78mr2785248qgn.77.1460028174750; Thu, 07 Apr 2016 04:22:54 -0700 (PDT) Received: from hendrix.dafiti.local ([200.205.195.2]) by smtp.gmail.com with ESMTPSA id f24sm3219815qkf.6.2016.04.07.04.22.53 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 07 Apr 2016 04:22:54 -0700 (PDT) From: Fabio da Silva Ribeiro To: alpine-aports@lists.alpinelinux.org Cc: Fabio da Silva Ribeiro Subject: [alpine-aports] [PATCH] testing/php7-uuid: PHP7 UUID package Date: Thu, 7 Apr 2016 08:22:50 -0300 Message-Id: <1460028170-24376-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-uuid/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 testing/php7-uuid/APKBUILD diff --git a/testing/php7-uuid/APKBUILD b/testing/php7-uuid/APKBUILD new file mode 100644 index 0000000..ff1ac28 --- /dev/null +++ b/testing/php7-uuid/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Fabio Ribeiro +# Maintainer: Fabio Ribeiro +pkgname=3Dphp7-uuid +_pkgreal=3Duuid +pkgver=3D1.0.4 +_pkgver=3D${pkgver} +pkgrel=3D0 +pkgdesc=3D"A wrapper around libuuid from the ext2utils project." +url=3D"http://pecl.php.net/package/$_pkgreal" +arch=3D"x86_64 armhf" +license=3D"PHP" +depends=3D +pecldepends=3D"php7-dev autoconf util-linux-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/50_$_pkgreal.= ini +} + +md5sums=3D"1695511daf585fcaf7816a401a6216f6 uuid-1.0.4.tgz" +sha256sums=3D"63079b6a62a9d43691ecbcd4eb52e5e5fe17b5a3d0f8e46e3c17ff265c06= a11f uuid-1.0.4.tgz" +sha512sums=3D"989d993f8158a13026b8e5c02f4aa50489b1a946d12da81dd1fff6091839= a45b180562f74c8af368a498c495477374ec9e1d536e7de0178c1f288e3abe360164 uuid-= 1.0.4.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 ---