- Add patch to prevent executing of git Changelog: https://github.com/tio/tio/releases/tag/v3.9
28 lines
668 B
Makefile
28 lines
668 B
Makefile
PORTNAME= tio
|
|
DISTVERSION= 3.9
|
|
CATEGORIES= comms
|
|
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${DISTVERSION}/
|
|
|
|
MAINTAINER= diizzy@FreeBSD.org
|
|
COMMENT= Simple TTY terminal I/O application
|
|
WWW= https://tio.github.io
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= gnome lua:54 meson pkgconfig tar:xz
|
|
USE_GNOME= glib20
|
|
|
|
OPTIONS_DEFINE= BASH DOCS
|
|
OPTIONS_DEFAULT=BASH
|
|
OPTIONS_SUB= yes
|
|
|
|
BASH_MESON_ON= -Dbashcompletiondir=${PREFIX}/etc/bash_completion.d
|
|
BASH_MESON_OFF= -Dbashcompletiondir=no
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|