mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
26 lines
727 B
Makefile
26 lines
727 B
Makefile
# Created by: freebsd-ports@henrik.synth.no
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= stardates
|
|
PORTVERSION= 1.6.1
|
|
CATEGORIES= astro
|
|
MASTER_SITES= ftp://ftp.cc.umanitoba.ca/startrek/stardates-pgms/ \
|
|
http://trek.starshine.org/downlink/utilities/ \
|
|
http://trek-stage.parts-unknown.org/downlink/
|
|
|
|
MAINTAINER= freebsd-ports@henrik.synth.no
|
|
COMMENT= Displays date in 5 formats (including stardate of course)
|
|
|
|
PLIST_FILES= bin/stardate man/man1/stardate.1.gz
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} ${WRKSRC}/stardate.c -o ${WRKSRC}/stardate
|
|
|
|
do-install:
|
|
${INSTALL} ${WRKSRC}/stardate ${STAGEDIR}${PREFIX}/bin
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/stardate
|
|
${INSTALL_MAN} ${WRKSRC}/stardate.1 \
|
|
${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|