mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/php7-lzf: PHP7 LZF package
This commit is contained in:
parent
f4883acff0
commit
a8d23e79ee
37
testing/php7-lzf/APKBUILD
Normal file
37
testing/php7-lzf/APKBUILD
Normal file
@ -0,0 +1,37 @@
|
||||
# Contributor: Fabio Ribeiro <fabiorphp@gmail.com>
|
||||
# Maintainer: Fabio Ribeiro <fabiorphp@gmail.com>
|
||||
pkgname=php7-lzf
|
||||
_pkgreal=LZF
|
||||
pkgver=1.6.5
|
||||
_pkgver=${pkgver}
|
||||
pkgrel=0
|
||||
pkgdesc="This package handles LZF de/compression."
|
||||
url="http://pecl.php.net/package/$_pkgreal"
|
||||
arch="all"
|
||||
license="PHP"
|
||||
depends=
|
||||
pecldepends="php7-dev autoconf"
|
||||
makedepends="$pecldepends"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://pecl.php.net/get/$_pkgreal-$_pkgver.tgz"
|
||||
|
||||
builddir="$srcdir"/$_pkgreal-$_pkgver
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
phpize7 || return 1
|
||||
./configure --prefix=/usr --with-php-config=php-config7 || return 1
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
make INSTALL_ROOT="$pkgdir"/ install || return 1
|
||||
install -d "$pkgdir"/etc/php7/conf.d || return 1
|
||||
echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php7/conf.d/50_$_pkgreal.ini
|
||||
}
|
||||
|
||||
md5sums="d02dc10685fc071d7fc988508f3c3aa8 LZF-1.6.5.tgz"
|
||||
sha256sums="dd116d12a3be985f42256650ce9a033fd3c4e8da4f2280c79fb9fd6a73199a4c LZF-1.6.5.tgz"
|
||||
sha512sums="0c34bf7c62be1d963dd229733836103a965dc5e24e663f48fba4a65cd3aca2dcc311069c3fd90d944359051eae51ba427f28a024e2214638a4c7886c08d1912d LZF-1.6.5.tgz"
|
||||
Loading…
x
Reference in New Issue
Block a user