mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
8a452fca51
your files from core files, and keeping that extension under version control and making it easy to deploy is now much, much easier. Development of this script was inspired by Magento which forces you to mix your extension files all throughout the core code directories. With modman, you can specify in a text file where you want your directories and files to be mapped to, and it will maintain symlinks for you so that your code is easy to hack and deploy. WWW: https://github.com/colinmollenhour/modman PR: 208147 Submitted by: Lukasz Wasikowski <lukasz@wasikowski.net> (maintainer) Reviewed by: lifanov (mentor), matthew (mentor) Approved by: lifanov (mentor), matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11169
26 lines
465 B
Makefile
26 lines
465 B
Makefile
# Created by: Lukasz Wasikowski <lukasz@wasikowski.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= modman
|
|
PORTVERSION= 1.12
|
|
CATEGORIES= sysutils www
|
|
|
|
MAINTAINER= lukasz@wasikowski.net
|
|
COMMENT= Modularize extensions using symlinks
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= bash:shells/bash
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= colinmollenhour
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= sbin/modman
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/sbin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|