opt/php-sqlite3/Pkgfile

27 lines
617 B
Plaintext
Raw Normal View History

2013-02-25 13:10:27 +01:00
# Description: SQLite3 module for PHP
# URL: https://www.php.net
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: sqlite3
2013-02-25 13:10:27 +01:00
name=php-sqlite3
version=8.0.12
2013-02-25 13:10:27 +01:00
release=1
2020-06-06 13:00:05 +02:00
source=(https://php.net/distributions/php-$version.tar.xz)
2013-02-25 13:10:27 +01:00
build() {
cd php-$version
2013-02-25 13:10:27 +01:00
./configure \
--disable-all \
--enable-pdo=shared \
--with-sqlite3=shared,/usr \
--with-pdo-sqlite=shared,/usr
2013-02-25 13:10:27 +01:00
make build-modules
2013-02-25 13:10:27 +01:00
install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
install -m 755 modules/*sqlite*.so $PKG/usr/lib/php/extensions
printf 'extension=%s\n' {pdo_sqlite,sqlite3}.so > $PKG/etc/php/conf.d/sqlite3.ini
2013-02-25 13:10:27 +01:00
}