Add movim-git

This commit is contained in:
moparisthebest
2018-01-16 01:28:03 -05:00
parent fa2fcbaff0
commit 6928fc75af
12 changed files with 287 additions and 0 deletions

31
src/php-imagick/PKGBUILD Normal file
View File

@@ -0,0 +1,31 @@
# Contributor: Spencer Rinehart <anubis@overthemonkey.com>
pkgname=php-imagick
_extname=imagick
pkgver=3.4.3
pkgrel=3
pkgdesc="PHP extension for IMagick"
arch=('i686' 'x86_64' 'armv7h')
url="https://pecl.php.net/package/${_extname}"
license=('PHP')
depends=('php>=5.4.0' 'imagemagick>=6.5.3')
backup=("etc/php/conf.d/${_extname}.ini")
install="php-${_extname}.install"
source=("https://pecl.php.net/get/${_extname}-${pkgver}.tgz")
md5sums=('d0ee25c007cd2a28cefccc0b9ee63a28')
build() {
cd "${_extname}-${pkgver}"
phpize
./configure --prefix=/usr
make
}
package() {
cd "${_extname}-${pkgver}"
make INSTALL_ROOT="${pkgdir}" install
echo "extension=${_extname}.so" > "${_extname}.ini"
install -D -m644 "${_extname}.ini" "${pkgdir}/etc/php/conf.d/${_extname}.ini"
}