mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 14:22:14 +01:00
45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=php-phalcon
|
|
_pkgreal=phalcon
|
|
pkgver=2.0.10
|
|
_pkgver=v$pkgver
|
|
pkgrel=0
|
|
pkgdesc="PHP extension that provides web framework delivered as a C-extension"
|
|
url="https://github.com/$_pkgreal/c$_pkgreal"
|
|
arch="all"
|
|
license="PHP"
|
|
depends="php-pdo php-json"
|
|
makedepends="php-dev autoconf re2c pcre-dev"
|
|
install=""
|
|
subpackages=""
|
|
source="https://github.com/$_pkgreal/c$_pkgreal/archive/$_pkgreal-$_pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/c$_pkgreal-$_pkgreal-$_pkgver/build
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
local bits=$(echo '#include <limits.h>' | ${CC:-gcc} -dM -E - | awk '$2 == "LONG_BIT" {print $3}')
|
|
ln -s ${bits}bits arch
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"/arch
|
|
phpize || return 1
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"/arch
|
|
make INSTALL_ROOT="$pkgdir"/ install || return 1
|
|
install -d "$pkgdir"/etc/php/conf.d || return 1
|
|
echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php/conf.d/$_pkgreal.ini
|
|
[ -d "$pkgdir"/usr/include ] && rm -fr "$pkgdir"/usr/include
|
|
return 0
|
|
}
|
|
|
|
md5sums="34f4eba6be3be7e3afc820553cff060a phalcon-v2.0.10.tar.gz"
|
|
sha256sums="59fbe5bdee7a955ecb1f0cd8bb4c942e33105080302f239363aa3941e9e52172 phalcon-v2.0.10.tar.gz"
|
|
sha512sums="fe3b2438f0dcaa6112a86057afeb708231ea8c2e9bc8ca7b04534bfe742d935a42227c527612d6ff3345bc947c5bb333dae343df1a1cb69ceafc702f42fcbef3 phalcon-v2.0.10.tar.gz"
|