mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
06963f22d6
Changes: https://github.com/drush-ops/drush/compare/8.1.12...8.1.15 PR: 222933 Submitted by: Matthias Fechner <idefix@fechner.net> (maintainer)
35 lines
807 B
Makefile
35 lines
807 B
Makefile
# Created by: Thomas Sandford <freebsduser@paradisegreen.co.uk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= drush
|
|
PORTVERSION= 8.1.15
|
|
CATEGORIES= www
|
|
MASTER_SITES= https://github.com/drush-ops/drush/releases/download/${DISTVERSION}/
|
|
DISTNAME= drush
|
|
EXTRACT_SUFX= .phar
|
|
|
|
MAINTAINER= idefix@fechner.net
|
|
COMMENT= Drupal command line and scripting interface
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
NO_ARCH= yes
|
|
|
|
USES= php:cli
|
|
# 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>
|