contrib/php-mcrypt/Pkgfile

23 lines
600 B
Plaintext
Raw Normal View History

2008-05-27 09:22:03 +02:00
# Description: MCrypt module for php
2015-11-05 12:07:24 +01:00
# URL: http://www.php.net
# Maintainer: Juergen Daubert, jue at crux dot nu
# Packager: Mikhail Kolesnik, mike at openbunker dot org
# Depends on: libmcrypt
2008-05-27 09:22:03 +02:00
name=php-mcrypt
2016-06-24 13:50:44 +02:00
version=5.6.23
2008-05-27 09:22:03 +02:00
release=1
2015-11-05 12:07:24 +01:00
source=(http://www.php.net/distributions/php-$version.tar.xz)
2008-05-27 09:22:03 +02:00
build() {
cd php-$version
./configure --disable-all \
2015-11-05 12:07:24 +01:00
--with-mcrypt=shared,/usr
2008-05-27 09:22:03 +02:00
make build-modules
install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
install -m 755 modules/mcrypt.so $PKG/usr/lib/php/extensions
echo "extension=mcrypt.so" > $PKG/etc/php/conf.d/mcrypt.ini
}