blob: 48df2a76c4d837f3d9870985fc7e3a60be981bc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $FreeBSD$
PORTNAME= odo
PORTVERSION= 0.2.2
DISTVERSIONPREFIX= v
CATEGORIES= sysutils
MAINTAINER= neel@neelc.org
COMMENT= Atomic odometer for the command line
LICENSE= ISCL
USE_GITHUB= yes
GH_ACCOUNT= atomicobject
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
regression-test: build
cd ${WRKSRC} && ${SH} ./test_odo
.include <bsd.port.mk>
|