1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/net/fsplib/Makefile
Pav Lucistnik 48b38b7a77 FSPLIB is a set of routines that implement the FSP protocol. They allow
applications to work with files on FSP server with the same style
used to work with local files via libc.

PR:		ports/78833
Submitted by:	Radim Kolar <hsn@netmag.cz>
2005-03-15 22:40:00 +00:00

30 lines
661 B
Makefile

# New ports collection makefile for: fsplib
# Date created: 15 Jan 2005
# Whom: X
#
# $FreeBSD$
PORTNAME= fsplib
PORTVERSION= 0.6
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= fsp
MAINTAINER= ports@FreeBSD.org
COMMENT= Library implementing FSP protocol
BUILD_DEPENDS= scons:${PORTSDIR}/devel/scons
PLIST_FILES= include/fsplib.h lib/libfsp.a
NO_WRKSUBDIR= yes
do-build:
@cd ${WRKSRC} && scons prefix=${PREFIX}
do-install:
@cd ${WRKSRC} && scons prefix=${PREFIX} install
${FIND} ${PREFIX}/include/ -name .sconsign -exec ${RM} {} \;
${FIND} ${PREFIX}/lib/ -name .sconsign -exec ${RM} {} \;
.include <bsd.port.mk>