mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
48b38b7a77
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>
30 lines
661 B
Makefile
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>
|