# Maintainer: Stefan Auditor # Please report issues at https://github.com/sanduhrs/arch-aur-drupalconsole _pkgname=drupalconsole pkgname=${_pkgname} pkgver=1.0.2 pkgrel=1 pkgdesc="The Drupal Console is a suite of tools that you run on a command line interface (CLI) to generate boilerplate code and interact with a Drupal 8 installation." arch=('any') url="http://drupalconsole.com/" license=('GPL') depends=('php') makedepends=("php-box" "php-composer" "git") install="${_pkgname}.install" source=("${_pkgname}-${pkgver//_/-}"::"https://github.com/hechoendrupal/drupal-console-launcher/archive/${pkgver//_/-}.tar.gz") sha512sums=('b39b6d824f886742429eb4cd668efbefdd5432e7074d324e386de0f7f9ccd1583491386f49dc94ba81e7d87f2a5d6e4bea219127c38267b6788f3d2a7177d109') build() { cd "${srcdir}/drupal-console-launcher-${pkgver//_/-}" php /usr/bin/composer install --no-dev ulimit -Sn 2048 php -d phar.readonly=Off /usr/bin/php-box build } package() { cd "${srcdir}/drupal-console-launcher-${pkgver//_/-}" install -D -m755 "drupal.phar" "${pkgdir}/usr/bin/drupal" }