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 443CFDC0977 for ; Thu, 7 Apr 2016 03:34:16 +0000 (UTC) Received: from mail-qg0-f45.google.com (mail-qg0-f45.google.com [209.85.192.45]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 00DC7DC01BD for ; Thu, 7 Apr 2016 03:34:14 +0000 (UTC) Received: by mail-qg0-f45.google.com with SMTP id f105so29516053qge.2 for ; Wed, 06 Apr 2016 20:34: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=bdKtb6MydYkAp3w9cTNIA4w/QifHjvaW0L5Zy3LsJHQ=; b=BR2/KFpYkFsqhvTfL0hTahTRZ7xL/KDiwYTQKUqL6lHYlqVKlXFc9UPPfDNHlPEwOj Kqv9chFW6rIye1dMQcMDUp5LV9070VVndeQmuj5Cv+natBPiT5rlkLvqJD2AuUNfHPui YiRPpqBhImgFn/58dwcyGjp7cFr015De1GJIs= 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=bdKtb6MydYkAp3w9cTNIA4w/QifHjvaW0L5Zy3LsJHQ=; b=B9DB/yqdDliac5KkfWwlGXdLuM1YU0S/oX2MTRGsC1MiCVQNurHqZld3dcRPQENe1p DD29I3djlEsjX2kSfcsE01g92Odeg6eq1Y40GK5uoKJwjBO2dFv1TH3WLDZXvLEw5Uyn fOabP/3am5IvuZizZDn8iulo+RqMbGNEzfEnHZyVdrucaOr9PX6xSQFZFqIrHArswU6C VtgT224zvRK1qgU9B0JnVY7UFSpugSsO70xBomUlsYnJ4YwSDwNWYzGJAKkOESWB0qWS K/n4oBzA6vaxwEAhmzYnMwPHaLtQPcm4BaIcQrq6Bg2vHEyo2lU/DTPjlLaatZA2ssxe gfaA== X-Gm-Message-State: AD7BkJImK/EZ4DbSC9T1/uqVMd/muecp2CU4bElYvk8isG9J/eQVOj2+982ykOnjx45XcjyBIwGfyGDSunJCDgwa+Wu0azIhlhBc9wXLmQPnZ5my83GimMysGru5ksr1pvRSzzFOdrSVr1I4AdDsPA== 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.89.19 with SMTP id u19mr840026qgd.90.1460000053935; Wed, 06 Apr 2016 20:34:13 -0700 (PDT) Received: from hendrix.dafiti.local ([200.205.195.2]) by smtp.gmail.com with ESMTPSA id c7sm2622774qkb.38.2016.04.06.20.34.12 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 06 Apr 2016 20:34:13 -0700 (PDT) From: Fabio da Silva Ribeiro To: alpine-aports@lists.alpinelinux.org Cc: Fabio da Silva Ribeiro Subject: [alpine-aports] [PATCH] testing/php7-inotify: PHP7 Inotify package Date: Thu, 7 Apr 2016 00:34:09 -0300 Message-Id: <1460000049-23534-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-inotify/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 testing/php7-inotify/APKBUILD diff --git a/testing/php7-inotify/APKBUILD b/testing/php7-inotify/APKBUILD new file mode 100644 index 0000000..1d9bf91 --- /dev/null +++ b/testing/php7-inotify/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Fabio Ribeiro +# Maintainer: Fabio Ribeiro +pkgname=3Dphp7-inotify +_pkgreal=3Dinotify +pkgver=3D2.0.0 +_pkgver=3D${pkgver} +pkgrel=3D0 +pkgdesc=3D"Inotify bindings for PHP" +url=3D"http://pecl.php.net/package/$_pkgreal" +arch=3D"x86_64 armhf" +license=3D"PHP" +depends=3D +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/70_$_pkgreal.= ini +} + +md5sums=3D"f7a951b3c66d08f5e7889479f5fc7564 inotify-2.0.0.tgz" +sha256sums=3D"d044a89d26bbaa110f34f182b1c92ab5eb09768096bacf3d837d7e49ac04= 5107 inotify-2.0.0.tgz" +sha512sums=3D"0547fdafd8177d41c2a92251cd85f046959ec8594236dc3d14396df0119a= 78cc6811973b641b95d1036b4325f9e97f0f9e9b181ae1dea79fc343f01777b6966d inoti= fy-2.0.0.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 ---