summaryrefslogtreecommitdiff
path: root/php-sqlite3/Pkgfile
blob: 021b78a530c068c34bf3a8a6bf30f0dedf257c43 (plain)
    1 # Description: SQLite3 module for PHP
    2 # URL: https://www.php.net
    3 # Maintainer: Juergen Daubert, jue at crux dot nu
    4 # Depends on: sqlite3
    5 
    6 name=php-sqlite3
    7 version=8.1.8
    8 release=1
    9 source=(https://php.net/distributions/php-$version.tar.xz)
   10 
   11 build() {
   12 	cd php-$version
   13 
   14 	./configure \
   15 		--disable-all \
   16 		--enable-pdo=shared \
   17 		--with-sqlite3=shared,/usr \
   18 		--with-pdo-sqlite=shared,/usr
   19 
   20 	make build-modules
   21 
   22 	install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
   23 	install -m 755 modules/*sqlite*.so $PKG/usr/lib/php/extensions
   24 
   25 	printf 'extension=%s\n' {pdo_sqlite,sqlite3}.so > $PKG/etc/php/conf.d/sqlite3.ini
   26 }

Generated by cgit