blob: 4f03d2583b23a0addf0b11b7d2c79cb008294699 (
plain) (
blame)
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
26
|
# New ports collection makefile for: unssh
# Date created: 30 July 2009
# Whom: Dax Labrador <semprix@bsdmail.org>
#
# $FreeBSD$
#
PORTNAME= unssh
PORTVERSION= 1.5
CATEGORIES= security
MASTER_SITES= http://www.semprixd.com/shares/ports/
MAINTAINER= semprix@gmx.com
COMMENT= Fast way to delete entries from OpenSSH known_hosts file
RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
NO_BUILD= yes
PLIST_FILES= bin/unssh
do-install:
@${INSTALL} -d ${PREFIX}/bin
@${CP} ${WRKSRC}/unssh.sh ${PREFIX}/bin/unssh
@${CHMOD} ${BINMODE} ${PREFIX}/bin/unssh
.include <bsd.port.mk>
|