# Maintainer: Stefan Auditor # Please report issues at https://github.com/sanduhrs/arch-aur-drupalconsole _pkgname=drupalconsole pkgname=${_pkgname} pkgver=1.9.5 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>=7.0' 'php<8.0') makedepends=("php-box" "composer" "git") install="${_pkgname}.install" source=("${_pkgname}-${pkgver//_/-}"::"https://github.com/hechoendrupal/drupal-console/archive/refs/tags/${pkgver//_/-}.tar.gz") sha512sums=('bb0fca69e6457342a93ed367ccb869332c1fc914114e29fcc44945ca7fd4260a5cc8be44f9121ed7c8236e27d108aa579d861ee003024e650345321c9ccd5fce') 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" }