blob: 0b3ad5fc8bc3e5735149d3dde13975e5164cb7d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Contributor: goodspb <goodspb.luo@gmail.com>
# Maintainer: Adriaan Groenenboom <agboom@pm.me>
pkgname=php7-pdlib
_pkgreal=pdlib
pkgver=1.0
pkgrel=0
pkgdesc="PHP extension for Dlib"
url="https://github.com/goodspb/pdlib"
arch="all !ppc64le" # build fails https://github.com/goodspb/pdlib/issues/19
license="MIT"
depends="php7-common dlib"
makedepends="php7-dev pkgconf php7-bz2"
source="$pkgname-$pkgver.tar.gz::https://github.com/goodspb/$_pkgreal/archive/v$pkgver.tar.gz"
builddir="$srcdir/$_pkgreal-$pkgver"
build() {
phpize7
./configure --prefix=/usr --with-php-config=php-config7
make
}
check() {
# Remove broken tests https://github.com/goodspb/pdlib/issues/14
rm \
tests/chinese_whispers_wrong_arg_type_error.phpt \
tests/cnn_face_detection_ctor_error.phpt \
tests/face_landmark_detection_ctor_error.phpt \
tests/face_recognition_ctor_error.phpt \
tests/integration_face_recognition.phpt # Downloads huge images
# Tests require bz2 extension which is not bundled
sed -i 's#PHP_TEST_SHARED_EXTENSIONS = `#PHP_TEST_SHARED_EXTENSIONS = -d extension=/usr/lib/php7/modules/bz2.so `#' Makefile
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test
}
package() {
make INSTALL_ROOT="$pkgdir" install
install -d "$pkgdir"/etc/php7/conf.d
echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php7/conf.d/$_pkgreal.ini
}
sha512sums="1ff8c3b55d69321e1b1bcec6f8f41240138adfe0298269f857f5ee9655d783324f16a371f61b8eb97638d7014a724faa4c80e81b67b51c34e6203a309abeacae php7-pdlib-1.0.tar.gz"
|