mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
bc087374d3
Submitted by: Ade Lovett <ade@lovett.com>
17 lines
271 B
Makefile
17 lines
271 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
BINDIR= ${PREFIX}/bin
|
|
WISHDIR?= ${BINDIR}
|
|
|
|
all: tkcron
|
|
|
|
tkcron:
|
|
sed -e "\:/usr/local/bin/wish: s;;${BINDIR}/wish8.2;g" tkcron.tcl > tkcron
|
|
|
|
install: all
|
|
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} tkcron ${BINDIR}
|
|
|
|
.include <bsd.own.mk>
|