mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
d5e2fb4a66
Closes PR 2064. Submitted by: Sander Vesik <sander@haldjas.folklore.ee>
13 lines
254 B
Makefile
13 lines
254 B
Makefile
BINDIR= ${PREFIX}/bin
|
|
WISHDIR?= ${BINDIR}
|
|
|
|
all: tkcron
|
|
|
|
tkcron:
|
|
sed -e "\:/usr/local/bin/wish: s;;${BINDIR}/wish4.1;g" tkcron.tcl > tkcron
|
|
|
|
install: all
|
|
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} tkcron ${BINDIR}
|
|
|
|
.include <bsd.own.mk>
|