mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
36 lines
856 B
Makefile
36 lines
856 B
Makefile
# Created by: Thomas Sandford <freebsduser@paradisegreen.co.uk>
|
|
|
|
PORTNAME= drush
|
|
DISTVERSION= 8.3.3
|
|
PORTREVISION= 0
|
|
CATEGORIES= www
|
|
MASTER_SITES= https://github.com/drush-ops/drush/releases/download/${DISTVERSION}/
|
|
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
|
|
DISTNAME= drush
|
|
EXTRACT_SUFX= .phar
|
|
|
|
MAINTAINER= mfechner@FreeBSD.org
|
|
COMMENT= Drupal command line and scripting interface
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
NO_ARCH= yes
|
|
|
|
USES= php:cli,flavors
|
|
# set php requirements same as drupal itself
|
|
USE_PHP= gd pcre session mbstring ctype json hash simplexml dom pdo filter phar
|
|
|
|
PLIST_FILES= bin/drush bin/drush.phar
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}/
|
|
${CP} ${_DISTDIR}/drush.phar ${WRKSRC}/
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/drush.phar ${STAGEDIR}${PREFIX}/bin/
|
|
${LN} -s drush.phar ${STAGEDIR}${PREFIX}/bin/drush
|
|
|
|
.include <bsd.port.mk>
|