# Maintainer: Stefan Auditor _pkgname=drush pkgname=${_pkgname}-git-alternative pkgver=8.0.2.r14.g30f88b2 pkgrel=1 pkgdesc="Drush is a command line shell and Unix scripting interface for Drupal" arch=('any') url="https://github.com/drush-ops/drush" license=('GPL') depends=('php') makedepends=("php-box" "php-composer" "git") provides=("${_pkgname}=${pkgver}") conflicts=("${_pkgname}") source=("${_pkgname}-${pkgver}"::"git+https://github.com/drush-ops/drush.git") sha512sums=('SKIP') pkgver() { cd "${_pkgname}" git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } build() { cd "${srcdir}/${_pkgname}-${pkgver}" php /usr/bin/composer install --no-dev cp box.json.dist box.json php -d phar.readonly=Off /usr/bin/php-box build } package() { cd "${srcdir}/${_pkgname}-${pkgver}" install -D -m755 "${_pkgname}.phar" "${pkgdir}/usr/bin/${_pkgname}" install -D -m644 "examples/example.aliases.drushrc.php" "${pkgdir}/etc/drush/aliases.drushrc.php" install -D -m644 "examples/example.drush.ini" "${pkgdir}/etc/drush/drush.ini" install -D -m644 "examples/example.drushrc.php" "${pkgdir}/etc/drush/drushrc.php" }