mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
55dc5ebbf0
Release notes: https://github.com/gahr/retcl/releases/tag/0.3.2
29 lines
545 B
Makefile
29 lines
545 B
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= retcl
|
|
PORTVERSION= 0.3.2
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Tcl client library for Redis
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= tcl:run
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= gahr
|
|
|
|
NO_BUILD= yes
|
|
|
|
LIBDIR= ${TCL_LIBDIR:S/${LOCALBASE}/${PREFIX}/}
|
|
PLIST_FILES= ${LIBDIR}/${PORTNAME}-${DISTVERSION}.tm
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${LIBDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.tm \
|
|
${STAGEDIR}${LIBDIR}/${PORTNAME}-${DISTVERSION}.tm
|
|
|
|
.include <bsd.port.mk>
|