"No More Secrets" is the name I've lovingly given to the infamous "decrypting text" effect seen on screen in the 1992 hacker movie Sneakers. This project provides tools to recreate this effect in your projects. WWW: https://github.com/bartobri/no-more-secrets
23 lines
457 B
Makefile
23 lines
457 B
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nms
|
|
PORTVERSION= 20160429
|
|
CATEGORIES= misc
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= Recreate decrypting text effect from the Sneakers movie
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= gmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= bartobri
|
|
GH_PROJECT= no-more-secrets
|
|
GH_TAGNAME= 9a7a77c
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|