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 09B96DC0977 for ; Thu, 7 Apr 2016 03:22:02 +0000 (UTC) Received: from mail-qg0-f41.google.com (mail-qg0-f41.google.com [209.85.192.41]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id BD62BDC01BD for ; Thu, 7 Apr 2016 03:22:01 +0000 (UTC) Received: by mail-qg0-f41.google.com with SMTP id f105so29365571qge.2 for ; Wed, 06 Apr 2016 20:22:01 -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=4xSQwjXk3shLKItNIHSLS66/QD7lfuw1wCjG30QDZac=; b=MNXK+5C2B00hHeVyxvvjdxZ/L5wojmzzpBCJvalFiKMY9EZVoLkFXkacY/GLRphZo8 4hqBWlTbKkBKF9EQlBeKBba5N15WqhQjm3lN4jtqNZzvsyU5jy43qb0nwFEmuyn2FnXp qZQqsDaPRDD9JegfBvmRzc11BmTtEw6Bsqq8k= 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=4xSQwjXk3shLKItNIHSLS66/QD7lfuw1wCjG30QDZac=; b=KCXRSHOQYXNOOOu2SpNoRNh5CR1hcxr6Iz9YoRagrAtU0InzWODlie47DaWrir0/V5 cpRCki7BWxYlq0vktXadVoEYfTq4WSlJTuO/25n0m6+mSDOkOjKmyNi50yQxlYweW/pF P2Khc5S8rgmhVig9s1/OttOpp/PSPLZ3zxwV0ImYpRM5r6PbBTD8TaQv+6MiHEKLS4te PSfHldhiPJQE9ijbl1qjRqJrVmw0x/uQPfNA0RF8cSgWuVbQMK0JtIbrK4egHB00GPDl wBcmST4gg36I8I3avY1Q0kh6SzrHQEF2kxG7muMyuW9QsGiSqX+AgpkVK1tp3fDB45V/ 6Qcg== X-Gm-Message-State: AD7BkJKMfysL8Cpo6J3qnlgr7OJ/dv6KSiTsRwy8TxN6H4FtGIe751UCRgJQNxdcSvIj7M+9LzxF3rlbJKFT+Ylr7lCAphbtPxuDDrjNcXVHiyy3qN66+/6LLOvnD3KuveSIb0xl7aq8XQ1+hx+6fw== 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.248.8 with SMTP id t8mr833440qhc.50.1459998996774; Wed, 06 Apr 2016 20:16:36 -0700 (PDT) Received: from hendrix.dafiti.local ([200.205.195.2]) by smtp.gmail.com with ESMTPSA id e14sm2602935qhc.17.2016.04.06.20.16.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 06 Apr 2016 20:16:36 -0700 (PDT) From: Fabio da Silva Ribeiro To: alpine-aports@lists.alpinelinux.org Cc: Fabio da Silva Ribeiro Subject: [alpine-aports] [PATCH] testing/php7-mailparse: PHP7 Mailparse package Date: Thu, 7 Apr 2016 00:16:31 -0300 Message-Id: <1459998991-17077-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-mailparse/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 testing/php7-mailparse/APKBUILD diff --git a/testing/php7-mailparse/APKBUILD b/testing/php7-mailparse/APKBU= ILD new file mode 100644 index 0000000..b13ef75 --- /dev/null +++ b/testing/php7-mailparse/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Fabio Ribeiro +# Maintainer: Fabio Ribeiro +pkgname=3Dphp7-mailparse +_pkgreal=3Dmailparse +pkgver=3D3.0.1 +_pkgver=3D${pkgver} +pkgrel=3D0 +pkgdesc=3D"Mailparse is an extension for parsing and working with email me= ssages." +url=3D"http://pecl.php.net/package/$_pkgreal" +arch=3D"x86_64 armhf" +license=3D"PHP" +depends=3D"php7-mbstring" +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/60_$_pkgreal.= ini +} + +md5sums=3D"5ae0643a11159414c7e790c73a9e25ec mailparse-3.0.1.tgz" +sha256sums=3D"42ee10de881a3739acf73ddef8800d80c3c57f70072f41bdb22e6e87ebc9= cc62 mailparse-3.0.1.tgz" +sha512sums=3D"42318d145c49644b0a1aea0e18aa3c6899f8ee2a8def7b9c22f7c0273742= 6de22aba00a4c899a269b1d8e64c190654413d857622c882b92caa07f201620f1e61 mailp= arse-3.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 ---