blob: ed1ac024fe4f599e23aee80be04868a21f17e383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
PORTNAME= countdown
PORTVERSION= 20150606
CATEGORIES= deskutils
MASTER_SITES= https://acme.com/software/countdown/
DISTNAME= ${PORTNAME}_06jun2015
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Counts down a specified time interval, beeps, then exits
LICENSE= BSD2CLAUSE
WRKSRC= ${WRKDIR}/countdown
PLIST_FILES= bin/countdown \
share/man/man1/countdown.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/countdown ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/countdown.1 ${STAGEDIR}${MAN1PREFIX}/share/man/man1/countdown.1
.include <bsd.port.mk>
|