blob: 4034bdc437c326249321da3b760165e2c99466f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# New ports collection makefile for: rcorder
# Date created: Sat Apr 27 17:49:09 CET 2002
# Whom: Lapo Luchini <lapo@lapo.it>
#
# $FreeBSD$
#
PORTNAME= rclean
PORTVERSION= 1.12
CATEGORIES= sysutils
MASTER_SITES= http://www.lapo.it/rclean/
MAINTAINER= lapo@lapo.it
USE_BZIP2= yes
do-build:
@(cd ${WRKSRC}; ${CC} -o ${PORTNAME} ${PORTNAME}.c)
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.include <bsd.port.mk>
|