mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
5e4bfc494d
to their latest versions Several new modules, however some will no longer work after changes to the core code; a best effort has been made to investigate and mark such broken modules.
27 lines
655 B
Makefile
27 lines
655 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= re
|
|
PORTVERSION= 0.4.6
|
|
CATEGORIES= audio devel
|
|
MASTER_SITES= http://www.creytiv.com/pub/
|
|
|
|
MAINTAINER= crees@FreeBSD.org
|
|
COMMENT= Library for real-time comms with async IO support
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/docs/COPYING
|
|
|
|
USES= gmake
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDATA= re.mk
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/include/${PORTNAME} ${STAGEDIR}${DATADIR}
|
|
(cd ${WRKSRC}/include && \
|
|
${COPYTREE_SHARE} \*.h ${STAGEDIR}${PREFIX}/include/${PORTNAME})
|
|
${INSTALL_DATA} ${WRKSRC}/mk/${PORTNAME}.mk ${STAGEDIR}${DATADIR}
|
|
${INSTALL_LIB} ${WRKSRC}/lib${PORTNAME}.[sa]* ${STAGEDIR}${PREFIX}/lib
|
|
|
|
.include <bsd.port.mk>
|