bd7f4e1d0f
actually any lighter---it's built with exactly the same feature-set as the main vim port. The only difference is lack of gtk20 GUI, and the language bindings are off by default. An UPDATING entry is included.
22 lines
505 B
Makefile
22 lines
505 B
Makefile
# Created by: Adam Weinberger <adamw@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PKGNAMESUFFIX= -tiny
|
|
|
|
COMMENT= Improved version of the vi editor (vim binary only)
|
|
|
|
CONFLICTS_INSTALL= vim vim-console
|
|
|
|
TINY= yes
|
|
MASTERDIR= ${.CURDIR}/../vim
|
|
|
|
PORTDATA= # Not for -tiny
|
|
PLIST= # Not for -tiny
|
|
PLIST_FILES= bin/vim \
|
|
man/man1/vim.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/vim ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/runtime/doc/vim.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include "${MASTERDIR}/Makefile"
|